diff options
Diffstat (limited to 'llvm/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll b/llvm/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll deleted file mode 100644 index 635a09ca93c..00000000000 --- a/llvm/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll +++ /dev/null @@ -1,10 +0,0 @@ -; RUN: opt < %s -instcombine -S | grep "icmp ugt" -; PR1107 -; PR1940 - -define i1 @test(i8 %A, i8 %B) { - %a = zext i8 %A to i32 - %b = zext i8 %B to i32 - %c = icmp sgt i32 %a, %b - ret i1 %c -} |