aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll
blob: 92a32d5d35bac8c26438b93bad0ab42ffcbc15b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; This is a bug in the VMcode library, not instcombine, it's just convenient 
; to expose it here.

; RUN: llvm-upgrade < %s | llvm-as | 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
}