summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-22 20:45:39 +0000
committerChris Lattner <sabre@nondot.org>2003-06-22 20:45:39 +0000
commit3a8622527c2ad6c7b24f5a2898fce950b0efebc1 (patch)
tree656762e6bd5574ce76758d7a37ddb5602035e04f
parentef47a506a114a135fb74b10c2ccca46bde280174 (diff)
downloadbcm5719-llvm-3a8622527c2ad6c7b24f5a2898fce950b0efebc1.tar.gz
bcm5719-llvm-3a8622527c2ad6c7b24f5a2898fce950b0efebc1.zip
New testcase
llvm-svn: 6855
-rw-r--r--llvm/test/Regression/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/test/Regression/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll b/llvm/test/Regression/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll
new file mode 100644
index 00000000000..9539fa88ce2
--- /dev/null
+++ b/llvm/test/Regression/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll
@@ -0,0 +1,12 @@
+; This is a bug in the VMcode library, not instcombine, it's just convenient
+; to expose it here.
+
+; RUN: as < %s | opt -instcombine -disable-output
+
+%A = global int 1
+%B = global int 2
+
+bool %test() {
+ %C = setlt int* getelementptr (int* %A, long 1), getelementptr (int* %B, long 2) ; Will get promoted to constantexpr
+ ret bool %C
+}
OpenPOWER on IntegriCloud