From: Chandler Carruth Date: Fri, 1 Feb 2013 00:04:33 +0000 (+0000) Subject: Fix another typo in the classof definitions that doesn't (currently) X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3529d1aa8df3cfd9e37b1a4252cabc0f01652e94;p=oota-llvm.git 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 --- diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp index 71be1a9b894..7eb72023325 100644 --- a/lib/MC/MCAsmStreamer.cpp +++ b/lib/MC/MCAsmStreamer.cpp @@ -279,7 +279,7 @@ public: /// @} static bool classof(const MCStreamer *S) { - return S->getKind() == SK_NullStreamer; + return S->getKind() == SK_AsmStreamer; } };