From ddd7e39537087a2fb8172a1f3d3a03df1f7f5f8d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 22 Jun 2003 20:45:39 +0000 Subject: [PATCH] New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6855 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../InstCombine/2003-06-22-ConstantExprCrash.ll | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll diff --git a/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll b/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll new file mode 100644 index 00000000000..9539fa88ce2 --- /dev/null +++ b/test/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 +}