blob: 8da9d3370d54c73ec41f8e73c1a39e7c884c9ee4 [file] [edit]
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
; RUN: not grep bitcast
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
}