blob: bfd41a87fc78f35e346c112ff4aa6d0cd55770fe [file] [log] [blame]
Reid Spencer64050992006-12-29 20:01:32 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep shl
Chris Lattnerc92921f2006-12-05 01:29:01 +00002
3bool %test(int %X, ubyte %A) {
4 %B = lshr int %X, ubyte %A
5 %D = trunc int %B to bool
6 ret bool %D
7}