forked from OSchip/llvm-project
new testcase, bswaps should be eliminated.
llvm-svn: 32005
This commit is contained in:
parent
8facb43593
commit
e7f83dcf4b
|
@ -0,0 +1,26 @@
|
||||||
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep ret | wc -l | grep 3 &&
|
||||||
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep 'call.*bswap'
|
||||||
|
|
||||||
|
bool %test1(ushort %tmp2) {
|
||||||
|
%tmp10 = call ushort %llvm.bswap.i16( ushort %tmp2 )
|
||||||
|
%tmp = seteq ushort %tmp10, 1
|
||||||
|
ret bool %tmp
|
||||||
|
}
|
||||||
|
|
||||||
|
bool %test2(uint %tmp) {
|
||||||
|
%tmp34 = tail call uint %llvm.bswap.i32( uint %tmp )
|
||||||
|
%tmp = seteq uint %tmp34, 1
|
||||||
|
ret bool %tmp
|
||||||
|
}
|
||||||
|
|
||||||
|
declare uint %llvm.bswap.i32(uint)
|
||||||
|
|
||||||
|
bool %test3(ulong %tmp) {
|
||||||
|
%tmp34 = tail call ulong %llvm.bswap.i64( ulong %tmp )
|
||||||
|
%tmp = seteq ulong %tmp34, 1
|
||||||
|
ret bool %tmp
|
||||||
|
}
|
||||||
|
|
||||||
|
declare ulong %llvm.bswap.i64(ulong)
|
||||||
|
|
||||||
|
declare ushort %llvm.bswap.i16(ushort)
|
Loading…
Reference in New Issue