diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-28 17:38:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-28 17:38:46 +0000 |
commit | 349c72a35d0c586d081d01d97577fcf69bb75cca (patch) | |
tree | 05a74b10c7181358b52e39d322d48562b9104fb9 /test | |
parent | 095765e26d1316e00f2fe65ca1bd4c71e1fc02bd (diff) | |
download | external_llvm-349c72a35d0c586d081d01d97577fcf69bb75cca.zip external_llvm-349c72a35d0c586d081d01d97577fcf69bb75cca.tar.gz external_llvm-349c72a35d0c586d081d01d97577fcf69bb75cca.tar.bz2 |
this test is now compiled into the right thing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46454 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll b/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll index a5ee87b..edbcfee 100644 --- a/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll +++ b/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll @@ -1,5 +1,6 @@ -; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep zext +; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {icmp ugt} ; PR1107 +; PR1940 define i1 @test(i8 %A, i8 %B) { %a = zext i8 %A to i32 |