mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-04 19:38:22 +00:00
38caf19333
Currently we have a number of tests that fail with -verify-machineinstrs. To detect this cases earlier we add the option to the testcases with the exception of tests that will currently fail with this option. PR 27456 keeps track of this failures. No code review, as discussed with Hal Finkel. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277624 91177308-0d34-0410-b5e6-96231b3b80d8
53 lines
717 B
LLVM
53 lines
717 B
LLVM
; All of these routines should be perform optimal load of constants.
|
|
; RUN: llc -verify-machineinstrs < %s -march=ppc32 | \
|
|
; RUN: grep lis | count 5
|
|
; RUN: llc -verify-machineinstrs < %s -march=ppc32 | \
|
|
; RUN: grep ori | count 3
|
|
; RUN: llc -verify-machineinstrs < %s -march=ppc32 | \
|
|
; RUN: grep "li " | count 4
|
|
|
|
define i32 @f1() {
|
|
entry:
|
|
ret i32 1
|
|
}
|
|
|
|
define i32 @f2() {
|
|
entry:
|
|
ret i32 -1
|
|
}
|
|
|
|
define i32 @f3() {
|
|
entry:
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @f4() {
|
|
entry:
|
|
ret i32 32767
|
|
}
|
|
|
|
define i32 @f5() {
|
|
entry:
|
|
ret i32 65535
|
|
}
|
|
|
|
define i32 @f6() {
|
|
entry:
|
|
ret i32 65536
|
|
}
|
|
|
|
define i32 @f7() {
|
|
entry:
|
|
ret i32 131071
|
|
}
|
|
|
|
define i32 @f8() {
|
|
entry:
|
|
ret i32 2147483647
|
|
}
|
|
|
|
define i32 @f9() {
|
|
entry:
|
|
ret i32 -2147483648
|
|
}
|