summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MCParser/AsmParser.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-24 01:07:33 +0000
committerChris Lattner <sabre@nondot.org>2010-01-24 01:07:33 +0000
commit807a3bcbbbf65c50d9ad87b7c86b85119389a730 (patch)
tree0588465d17570ed398da3549c7f2ede764ee03ef /llvm/lib/MC/MCParser/AsmParser.cpp
parentd3637edc4c3a71ba93dbba83d6c668411a0f45e8 (diff)
downloadbcm5719-llvm-807a3bcbbbf65c50d9ad87b7c86b85119389a730.tar.gz
bcm5719-llvm-807a3bcbbbf65c50d9ad87b7c86b85119389a730.zip
fix a parsing problem on instructions like:
movw $8, (_cost_table_-L97$pb)+66(%eax) After the parens, we could still have a binop. llvm-svn: 94345
Diffstat (limited to 'llvm/lib/MC/MCParser/AsmParser.cpp')
-rw-r--r--llvm/lib/MC/MCParser/AsmParser.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/MC/MCParser/AsmParser.cpp b/llvm/lib/MC/MCParser/AsmParser.cpp
index dd438b76124..077d2dffa65 100644
--- a/llvm/lib/MC/MCParser/AsmParser.cpp
+++ b/llvm/lib/MC/MCParser/AsmParser.cpp
@@ -331,10 +331,9 @@ bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) {
}
bool AsmParser::ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) {
- if (ParseParenExpr(Res, EndLoc))
- return true;
-
- return false;
+ Res = 0;
+ return ParseParenExpr(Res, EndLoc) ||
+ ParseBinOpRHS(1, Res, EndLoc);
}
bool AsmParser::ParseAbsoluteExpression(int64_t &Res) {
OpenPOWER on IntegriCloud