From f39c24cbeb920e05455d65432058850acc58df47 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 14 Aug 2002 19:28:22 +0000 Subject: [PATCH] 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 --- test/Transforms/GCSE/gcsetests.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.34.1