Files
archived-llvm/test/CodeGen/PowerPC/constants.ll
John Criswell cfa435f79b Mark these as failing on sparc instead of sparcv9.
The configure script no longer tells us that we're configuring for SparcV9
specifically.
2004-06-17-UnorderedCompares may work on SparcV8, but it's experiental
anyway.
2005-02-20-AggregateSAVEEXPR should fail on any Solaris machine, as Solaris
doesn't provide complex number support.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_16@24155 91177308-0d34-0410-b5e6-96231b3b80d8
2005-11-02 18:05:50 +00:00

52 lines
710 B
LLVM

; All of these routines should be perform optimal load of constants.
; RUN: llvm-as < %s | llc -march=ppc32 | grep lis | wc -l | grep 5 &&
; RUN: llvm-as < %s | llc -march=ppc32 | grep ori | wc -l | grep 3 &&
; RUN: llvm-as < %s | llc -march=ppc32 | grep 'li ' | wc -l | grep 4
implementation ; Functions:
int %f1() {
entry:
ret int 1
}
int %f2() {
entry:
ret int -1
}
int %f3() {
entry:
ret int 0
}
int %f4() {
entry:
ret int 32767
}
int %f5() {
entry:
ret int 65535
}
int %f6() {
entry:
ret int 65536
}
int %f7() {
entry:
ret int 131071
}
int %f8() {
entry:
ret int 2147483647
}
int %f9() {
entry:
ret int -2147483648
}