From af79ae558f689a1a3707dfcd85fbb8735dcc1efa Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Wed, 17 Jun 2009 03:05:00 +0000 Subject: [PATCH] Correct an accidental duplication of the test (patch doesn't handle creating new files very well). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73599 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../InstCombine/2009-06-16-SRemDemandedBits.ll | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll b/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll index 230e2459055..82b223a4ddc 100644 --- a/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll +++ b/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll @@ -7,12 +7,3 @@ entry: %and = and i32 %rem, 2 ret i32 %and } -; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep srem -; PR3439 - -define i32 @a(i32 %x) nounwind { -entry: - %rem = srem i32 %x, 2 - %and = and i32 %rem, 2 - ret i32 %and -}