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://review.tizen.org/git/?a=commitdiff_plain;h=339468ece6f27db88843a8887fa820f230787ac4;p=platform%2Fupstream%2Fllvm.git Fix another typo in the classof definitions that doesn't (currently) have any effect. Spotted by Eli in review, thanks!!! llvm-svn: 174121 --- diff --git a/llvm/lib/MC/MCAsmStreamer.cpp b/llvm/lib/MC/MCAsmStreamer.cpp index 71be1a9..7eb7202 100644 --- a/llvm/lib/MC/MCAsmStreamer.cpp +++ b/llvm/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; } };