mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-04 18:38:37 +00:00
New test
llvm-svn: 14220
This commit is contained in:
parent
8f9fb1d2ea
commit
33fc8f4a89
@ -105,3 +105,11 @@ ubyte %test16(ubyte %A) {
|
||||
%C = and ubyte %B, 3
|
||||
ret ubyte %C
|
||||
}
|
||||
|
||||
sbyte %test17(sbyte %X, sbyte %Y) { ;; ~(~X & Y) --> (X | ~Y)
|
||||
%B = xor sbyte %X, -1
|
||||
%C = and sbyte %B, %Y
|
||||
%D = xor sbyte %C, -1
|
||||
ret sbyte %D
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user