From: Daniel Dunbar Date: Thu, 1 Jul 2010 20:20:01 +0000 (+0000) Subject: MC: Fix an error message. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=839348a9f04977862935f4a7734b1b855d1162c2;p=oota-llvm.git MC: Fix an error message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107424 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCParser/AsmParser.cpp b/lib/MC/MCParser/AsmParser.cpp index 613a2624652..dc63e1dc5fe 100644 --- a/lib/MC/MCParser/AsmParser.cpp +++ b/lib/MC/MCParser/AsmParser.cpp @@ -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; }