forked from OSchip/llvm-project
Correct comment about ARM immediates using '#' not '$' and TODO for modifiers.
llvm-svn: 84055
This commit is contained in:
parent
d7ebfe3963
commit
3a80daced0
|
@ -537,7 +537,8 @@ bool ARMAsmParser::ParseOperand(ARMOperand &Op) {
|
|||
if (!ParseRegisterList(Op))
|
||||
return false;
|
||||
case AsmToken::Hash:
|
||||
// $42 -> immediate.
|
||||
// #42 -> immediate.
|
||||
// TODO: ":lower16:" and ":upper16:" modifiers after # before immediate
|
||||
getLexer().Lex();
|
||||
const MCExpr *Val;
|
||||
if (getParser().ParseExpression(Val))
|
||||
|
|
Loading…
Reference in New Issue