mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
884c70c912
e.g. movl 4(%esp), %eax addl $4, %eax is 2 bytes shorter than movl $4, %eax addl 4(%esp), %eax git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60139 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
262 B
LLVM
15 lines
262 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 | grep inc
|
|
; RUN: llvm-as < %s | llc -march=x86 | grep add | grep 4
|
|
|
|
define i32 @test(i32 %X) nounwind {
|
|
entry:
|
|
%0 = add i32 %X, 1
|
|
ret i32 %0
|
|
}
|
|
|
|
define i32 @test2(i32 %X) nounwind {
|
|
entry:
|
|
%0 = add i32 %X, 4
|
|
ret i32 %0
|
|
}
|