1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-04 21:31:03 +00:00
llvm-6502/test/Transforms/InstCombine/2003-06-22-ConstantExprCrash.ll
2003-09-16 15:29:54 +00:00

13 lines
344 B
LLVM

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