aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2009-10-13 23:33:38 +0000
committerKevin Enderby <enderby@apple.com>2009-10-13 23:33:38 +0000
commit079469f649d8da3923b9f747d7062c84e01cc4ae (patch)
tree7dfd447f702073245f964803ac6ad6bf65d09251 /lib/Target/ARM/AsmParser/ARMAsmParser.cpp
parent1619dc3b9ee2573c481591764c2d26d5ff16b483 (diff)
Correct comment about ARM immediates using '#' not '$' and TODO for modifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84055 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r--lib/Target/ARM/AsmParser/ARMAsmParser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index c82ab583ef..7438ea9c79 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))