Fix buggy testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3403 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-08-20 17:07:02 +00:00
parent 5a905e20b7
commit 41ca3f8ee4

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
}