1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

New testcase for instcombine

llvm-svn: 28272
This commit is contained in:
Chris Lattner 2006-05-13 02:00:07 +00:00
parent 4bbc1d8e95
commit 5f2a11f1bf

View File

@ -185,3 +185,12 @@ uint %test29(uint %c1, uint %c2) {
ret uint %tmp10
}
uint %test30(uint %c1) {
%c2 = cast uint %c1 to ubyte
%c3 = xor ubyte %c2, 1
%c4 = cast ubyte %c3 to uint
ret uint %c4
}