1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 22:12:57 +02:00
llvm-mirror/test/Transforms/InstCombine/2004-09-28-BadShiftAndSetCC.llx
2007-01-17 07:59:14 +00:00

10 lines
353 B
Plaintext

; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | not grep -- -65536
bool %test(int %tmp.124) {
%tmp.125 = shl int %tmp.124, ubyte 8
%tmp.126.mask = and int %tmp.125, -16777216 ; <int> [#uses=1]
%tmp.128 = seteq int %tmp.126.mask, 167772160 ; <bool> [#uses=1]
ret bool %tmp.128
}