1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 22:12:57 +02:00

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 55bdf1fec4
commit 03ab577d77

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