llvm-6502/test/Transforms/InstCombine/cast-and-cast.ll
Chris Lattner 779d212fbd this doesn't pass with CVS HEAD.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31942 91177308-0d34-0410-b5e6-96231b3b80d8
2006-11-27 20:01:48 +00:00

20 lines
435 B
LLVM

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep bitcast
;; This requires Reid to remove the instcombine hack that turns trunc to bool into setne.
; XFAIL: *
bool %test1(uint %val) {
%t1 = bitcast uint %val to int
%t2 = and int %t1, 1
%t3 = trunc int %t2 to bool
ret bool %t3
}
short %test1(uint %val) {
%t1 = bitcast uint %val to int
%t2 = and int %t1, 1
%t3 = trunc int %t2 to short
ret short %t3
}