From: Chris Lattner Date: Wed, 14 Aug 2002 19:28:22 +0000 (+0000) Subject: Fix tests that use the now dead not instruction X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f39c24cbeb920e05455d65432058850acc58df47;p=oota-llvm.git Fix tests that use the now dead not instruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3331 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/GCSE/gcsetests.ll b/test/Transforms/GCSE/gcsetests.ll index 10b00694efa..9a6f2355427 100644 --- a/test/Transforms/GCSE/gcsetests.ll +++ b/test/Transforms/GCSE/gcsetests.ll @@ -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