llvm-6502/test/Transforms/InstCombine/2004-07-27-ConstantExprMul.ll

9 lines
154 B
LLVM
Raw Normal View History

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