diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-30 21:31:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-30 21:31:34 +0000 |
commit | 9e371f4b8b45f15f88f8ec49d45f74a392b4b4b0 (patch) | |
tree | b2311172ca2006338816d0882d5ac9b5804f61ee /llvm/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll | |
parent | 60745fe8e6aaf2c193842fcff2d8d5441616eb75 (diff) | |
download | bcm5719-llvm-9e371f4b8b45f15f88f8ec49d45f74a392b4b4b0.tar.gz bcm5719-llvm-9e371f4b8b45f15f88f8ec49d45f74a392b4b4b0.zip |
suck a bunch more gep tests into getelementptr.ll and filecheckize them all.
llvm-svn: 80517
Diffstat (limited to 'llvm/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll b/llvm/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll deleted file mode 100644 index d6cacece089..00000000000 --- a/llvm/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll +++ /dev/null @@ -1,13 +0,0 @@ -; This is a bug in the VMcode library, not instcombine, it's just convenient -; to expose it here. - -; RUN: llvm-as < %s | opt -instcombine -disable-output - -@A = global i32 1 ; <i32*> [#uses=1] -@B = global i32 2 ; <i32*> [#uses=1] - -define i1 @test() { - %C = icmp ult i32* getelementptr (i32* @A, i64 1), getelementptr (i32* @B, i64 2) ; <i1> [#uses=1] - ret i1 %C -} - |