New testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21808 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-05-09 04:54:18 +00:00
parent 87bb7c61ac
commit 2f2c3e4392

View File

@ -211,3 +211,12 @@ uint %test32(uint %In) {
%A = and uint %Z, 1
ret uint %A
}
uint %test33(uint %b) { ;; Code corresponding to one-bit bitfield ^1.
%tmp.4.mask = and uint %b, 1
%tmp.10 = xor uint %tmp.4.mask, 1
%tmp.12 = and uint %b, 4294967294
%tmp.13 = or uint %tmp.12, %tmp.10
ret uint %tmp.13
}