Files
archived-llvm/test/CodeGen/PowerPC/select_lt0.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

46 lines
914 B
LLVM

; RUN: llvm-as < %s | llc -march=ppc32 | not grep cmp
int %seli32_1(int %a) {
entry:
%tmp.1 = setlt int %a, 0
%retval = select bool %tmp.1, int 5, int 0
ret int %retval
}
int %seli32_2(int %a, int %b) {
entry:
%tmp.1 = setlt int %a, 0
%retval = select bool %tmp.1, int %b, int 0
ret int %retval
}
int %seli32_3(int %a, short %b) {
entry:
%tmp.2 = cast short %b to int
%tmp.1 = setlt int %a, 0
%retval = select bool %tmp.1, int %tmp.2, int 0
ret int %retval
}
int %seli32_4(int %a, ushort %b) {
entry:
%tmp.2 = cast ushort %b to int
%tmp.1 = setlt int %a, 0
%retval = select bool %tmp.1, int %tmp.2, int 0
ret int %retval
}
short %seli16_1(short %a) {
entry:
%tmp.1 = setlt short %a, 0
%retval = select bool %tmp.1, short 7, short 0
ret short %retval
}
short %seli16_2(int %a, short %b) {
entry:
%tmp.1 = setlt int %a, 0
%retval = select bool %tmp.1, short %b, short 0
ret short %retval
}