1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 23:42:52 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll
Chris Lattner 08cc123f78 New testcase
llvm-svn: 6855
2003-06-22 20:45:39 +00:00

13 lines
339 B
LLVM

; 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
}