mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Intel syntax: Do not unncessarily create plus expression for memory operand displacement.
llvm-svn: 148321
This commit is contained in:
parent
84d275a823
commit
388aa8feb0
@ -634,8 +634,7 @@ X86Operand *X86AsmParser::ParseIntelBracExpression(unsigned Size) {
|
||||
Scale = Val;
|
||||
} else if (getLexer().is(AsmToken::RBrac)) {
|
||||
const MCExpr *ValExpr = MCConstantExpr::Create(Val, getContext());
|
||||
Disp = isPlus ? MCUnaryExpr::CreatePlus(ValExpr, getContext()) :
|
||||
MCUnaryExpr::CreateMinus(ValExpr, getContext());
|
||||
Disp = isPlus ? ValExpr : MCUnaryExpr::CreateMinus(ValExpr, getContext());
|
||||
} else
|
||||
return ErrorOperand(PlusLoc, "unexpected token after +");
|
||||
}
|
||||
|
@ -7,6 +7,8 @@ _test:
|
||||
_main:
|
||||
// CHECK: movl $257, -4(%rsp)
|
||||
mov DWORD PTR [RSP - 4], 257
|
||||
// CHECK: movl $258, 4(%rsp)
|
||||
mov DWORD PTR [RSP + 4], 258
|
||||
// CHECK: movq $123, -16(%rsp)
|
||||
mov QWORD PTR [RSP - 16], 123
|
||||
// CHECK: movb $97, -17(%rsp)
|
||||
|
Loading…
Reference in New Issue
Block a user