llvm-6502/test/CodeGen/PowerPC/constants.ll
Tanya Lattner cfab3da46e Remove llvm-upgrade and update tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47325 91177308-0d34-0410-b5e6-96231b3b80d8
2008-02-19 08:07:33 +00:00

53 lines
681 B
LLVM

; All of these routines should be perform optimal load of constants.
; RUN: llvm-as < %s | llc -march=ppc32 | \
; RUN: grep lis | count 5
; RUN: llvm-as < %s | llc -march=ppc32 | \
; RUN: grep ori | count 3
; RUN: llvm-as < %s | llc -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
}