MC: Fix an error message.

llvm-svn: 107424
This commit is contained in:
Daniel Dunbar 2010-07-01 20:20:01 +00:00
parent bd862711fd
commit 0aa4365e47
1 changed files with 1 additions and 1 deletions

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;
}