llvm-6502/test/Transforms/InstCombine/2003-05-27-ConstExprCrash.ll
2003-09-16 15:29:54 +00:00

9 lines
172 B
LLVM

; RUN: llvm-as < %s | opt -instcombine -disable-output
%X = global int 5
long %test() {
%C = add long 1, 2
%V = add long cast(int* %X to long), %C
ret long %V
}