llvm-6502/test/Transforms/InstCombine/2003-05-27-ConstExprCrash.ll
2006-12-02 04:23:10 +00:00

9 lines
187 B
LLVM

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