mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
ARM .thumb_func directive for quoted symbol names.
Use the getIdentifier() method of the token, not getString(), otherwise we keep the quotes as part of the symbol name, which we don't want. rdar://10428015 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144315 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ceb0af3d6e
commit
d475f8612b
@ -4966,17 +4966,17 @@ 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 .thumb_func directive");
|
||||
Name = Tok.getString();
|
||||
Name = Tok.getIdentifier();
|
||||
Parser.Lex(); // Consume the identifier token.
|
||||
}
|
||||
|
||||
if (getLexer().isNot(AsmToken::EndOfStatement))
|
||||
if (getLexer().isNot(AsmToken::EndOfStatement))
|
||||
return Error(L, "unexpected token in directive");
|
||||
Parser.Lex();
|
||||
|
||||
// FIXME: assuming function name will be the line following .thumb_func
|
||||
if (!isMachO) {
|
||||
Name = Parser.getTok().getString();
|
||||
Name = Parser.getTok().getIdentifier();
|
||||
}
|
||||
|
||||
// Mark symbol as a thumb symbol.
|
||||
|
Loading…
Reference in New Issue
Block a user