diff --git a/llvm/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll b/llvm/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll index 230e2459055d..82b223a4ddc9 100644 --- a/llvm/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll +++ b/llvm/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 -}