1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CodeGen/PowerPC/constants.ll
Ehsan Amiri db43217a24 Adding -verify-machineinstrs option to PowerPC tests
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.

llvm-svn: 277624
2016-08-03 18:17:35 +00:00

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
}