diff options
Diffstat (limited to 'llvm/test/Transforms/InstCombine/2002-12-05-MissedConstProp.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/2002-12-05-MissedConstProp.ll | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/test/Transforms/InstCombine/2002-12-05-MissedConstProp.ll b/llvm/test/Transforms/InstCombine/2002-12-05-MissedConstProp.ll deleted file mode 100644 index 49e55c620a4..00000000000 --- a/llvm/test/Transforms/InstCombine/2002-12-05-MissedConstProp.ll +++ /dev/null @@ -1,13 +0,0 @@ -; RUN: opt < %s -instcombine -S | FileCheck %s - -; CHECK-NOT: add - -define i32 @test(i32 %A) { - %A.neg = sub i32 0, %A ; <i32> [#uses=1] - %.neg = sub i32 0, 1 ; <i32> [#uses=1] - %X = add i32 %.neg, 1 ; <i32> [#uses=1] - %Y.neg.ra = add i32 %A, %X ; <i32> [#uses=1] - %r = add i32 %A.neg, %Y.neg.ra ; <i32> [#uses=1] - ret i32 %r -} - |