1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

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

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

llvm-svn: 174121
This commit is contained in:
Chandler Carruth 2013-02-01 00:04:33 +00:00
parent a55db587cd
commit 305ed81b1c

View File

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