Fix another typo in the classof definitions that doesn't (currently)

have any effect. Spotted by Eli in review, thanks!!!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174121 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth
2013-02-01 00:04:33 +00:00
parent 16c4b3cf29
commit 3529d1aa8d

View File

@@ -279,7 +279,7 @@ public:
/// @} /// @}
static bool classof(const MCStreamer *S) { static bool classof(const MCStreamer *S) {
return S->getKind() == SK_NullStreamer; return S->getKind() == SK_AsmStreamer;
} }
}; };