From 41ca3f8ee412fc469f7e0f24a3b7b71a942d32be Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 20 Aug 2002 17:07:02 +0000 Subject: [PATCH] Fix buggy testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3403 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/not.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Transforms/InstCombine/not.ll b/test/Transforms/InstCombine/not.ll index 82375bfaf29..870e195add2 100644 --- a/test/Transforms/InstCombine/not.ll +++ b/test/Transforms/InstCombine/not.ll @@ -8,9 +8,9 @@ implementation -int "test1"(int %A) { - %B = xor int %A - %C = xor int %B +int %test1(int %A) { + %B = xor int %A, -1 + %C = xor int %B, -1 ret int %C }