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

MC: Fix an error message.

llvm-svn: 107424
This commit is contained in:
Daniel Dunbar 2010-07-01 20:20:01 +00:00
parent f9365363db
commit 769d88aa45

View File

@ -1938,7 +1938,7 @@ bool AsmParser::ParseDirectiveLine(StringRef, SMLoc DirectiveLoc) {
}
if (Lexer.isNot(AsmToken::EndOfStatement))
return TokError("unexpected token in '.file' directive");
return TokError("unexpected token in '.line' directive");
return false;
}