forked from OSchip/llvm-project
Fix tests that use the now dead not instruction
llvm-svn: 3331
This commit is contained in:
parent
07a5218b6e
commit
1115d58b7c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue