aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-11-05 22:11:33 +0000
committerJim Grosbach <grosbach@apple.com>2010-11-05 22:11:33 +0000
commit83c4018fcca18fe9c281c3943fc58a17621636c4 (patch)
tree3387bb091d5ba37159ab9bb3031e2139d0b21105
parentce79299f78bb04e76e1860ab119b85d69f3a19c7 (diff)
downloadexternal_llvm-83c4018fcca18fe9c281c3943fc58a17621636c4.zip
external_llvm-83c4018fcca18fe9c281c3943fc58a17621636c4.tar.gz
external_llvm-83c4018fcca18fe9c281c3943fc58a17621636c4.tar.bz2
Fix past-o.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118304 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/AsmParser/ARMAsmParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index f5dc38b..dffee21 100644
--- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@ -903,7 +903,7 @@ bool ARMAsmParser::ParseDirectiveThumb(SMLoc L) {
bool ARMAsmParser::ParseDirectiveThumbFunc(SMLoc L) {
const AsmToken &Tok = Parser.getTok();
if (Tok.isNot(AsmToken::Identifier) && Tok.isNot(AsmToken::String))
- return Error(L, "unexpected token in .syntax directive");
+ return Error(L, "unexpected token in .thumb_func directive");
Parser.Lex(); // Consume the identifier token.
if (getLexer().isNot(AsmToken::EndOfStatement))