mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
16 lines
332 B
LLVM
16 lines
332 B
LLVM
|
; Positive test for inline register constraints
|
||
|
;
|
||
|
; RUN: llc -march=mipsel < %s | FileCheck %s
|
||
|
|
||
|
define i32 @main() nounwind {
|
||
|
entry:
|
||
|
|
||
|
; X with -3
|
||
|
;CHECK: #APP
|
||
|
;CHECK: addi ${{[0-9]+}},${{[0-9]+}},0xfffffffffffffffd
|
||
|
;CHECK: #NO_APP
|
||
|
tail call i32 asm sideeffect "addi $0,$1,${2:X}", "=r,r,I"(i32 7, i32 -3) nounwind
|
||
|
|
||
|
ret i32 0
|
||
|
}
|