1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Fix buggy testcase

llvm-svn: 3403
This commit is contained in:
Chris Lattner 2002-08-20 17:07:02 +00:00
parent a477df934f
commit ad9f0fd080

View File

@ -8,9 +8,9 @@
implementation
int "test1"(int %A) {
%B = xor int %A
%C = xor int %B
int %test1(int %A) {
%B = xor int %A, -1
%C = xor int %B, -1
ret int %C
}