mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
27b1252c13
This changes the tests that were targeting ARM EABI to explicitly specify the environment rather than relying on the default. This breaks with the new Windows on ARM support when running the tests on Windows where the default environment is no longer EABI. Take the opportunity to avoid a pointless redirect (helps when trying to debug with providing a command line invocation which can be copy and pasted) and removing a few greps in favour of FileCheck. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205541 91177308-0d34-0410-b5e6-96231b3b80d8
51 lines
931 B
LLVM
51 lines
931 B
LLVM
; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - | FileCheck %s
|
|
|
|
; 171 = 0x000000ab
|
|
define i64 @f1(i64 %a) {
|
|
; CHECK: f1
|
|
; CHECK: subs r0, r0, #171
|
|
; CHECK: sbc r1, r1, #0
|
|
%tmp = sub i64 %a, 171
|
|
ret i64 %tmp
|
|
}
|
|
|
|
; 66846720 = 0x03fc0000
|
|
define i64 @f2(i64 %a) {
|
|
; CHECK: f2
|
|
; CHECK: subs r0, r0, #66846720
|
|
; CHECK: sbc r1, r1, #0
|
|
%tmp = sub i64 %a, 66846720
|
|
ret i64 %tmp
|
|
}
|
|
|
|
; 734439407618 = 0x000000ab00000002
|
|
define i64 @f3(i64 %a) {
|
|
; CHECK: f3
|
|
; CHECK: subs r0, r0, #2
|
|
; CHECK: sbc r1, r1, #171
|
|
%tmp = sub i64 %a, 734439407618
|
|
ret i64 %tmp
|
|
}
|
|
|
|
define i32 @f4(i32 %x) {
|
|
entry:
|
|
; CHECK: f4
|
|
; CHECK: rsbs
|
|
%sub = sub i32 1, %x
|
|
%cmp = icmp ugt i32 %sub, 0
|
|
%sel = select i1 %cmp, i32 1, i32 %sub
|
|
ret i32 %sel
|
|
}
|
|
|
|
; rdar://11726136
|
|
define i32 @f5(i32 %x) {
|
|
entry:
|
|
; CHECK: f5
|
|
; CHECK: movw r1, #65535
|
|
; CHECK-NOT: movt
|
|
; CHECK-NOT: add
|
|
; CHECK: sub r0, r0, r1
|
|
%sub = add i32 %x, -65535
|
|
ret i32 %sub
|
|
}
|