mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Intel syntax: Do not unncessarily create plus expression for memory operand displacement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148321 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user