1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00

New testcase

llvm-svn: 16835
This commit is contained in:
Chris Lattner 2004-10-08 05:03:25 +00:00
parent 87259c3ce9
commit a50e67b63a

View File

@ -178,3 +178,10 @@ bool %test26(int %A) {
ret bool %D
}
ubyte %test27(ubyte %A) {
%B = and ubyte %A, 4
%C = sub ubyte %B, 16
%D = and ubyte %C, 240 ;; 0xF0
%E = add ubyte %D, 16
ret ubyte %E
}