llvm-6502/test/Transforms/InstCombine/2004-07-27-ConstantExprMul.ll
2006-12-02 04:23:10 +00:00

9 lines
169 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output
%p = weak global int 0
int %test(int %x) {
%y = mul int %x, cast (int* %p to int)
ret int %y
}