New testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13739 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-05-25 06:30:49 +00:00
parent c971025b01
commit 256b7a452b

View File

@ -109,3 +109,9 @@ int %test15a(bool %C) {
ret int %V
}
bool %test16(int %X) {
%tmp.3 = shr int %X, ubyte 4
%tmp.6 = and int %tmp.3, 1
%tmp.7 = setne int %tmp.6, 0 ;; X & 16 != 0
ret bool %tmp.7
}