diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index c82ab583efc..7438ea9c79f 100644 --- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -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))