Fix tests that use the now dead not instruction

llvm-svn: 3331
This commit is contained in:
Chris Lattner 2002-08-14 19:28:22 +00:00
parent 07a5218b6e
commit 1115d58b7c
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ begin
%A = add int %i, %j
%B = add int %i, %j
%C = not int %A
%D = not int %B
%E = not int %j
%C = xor int %A, -1
%D = xor int %B, -1
%E = xor int %j, -1
ret void
end