1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/2004-07-27-ConstantExprMul.ll
Robert Bocchino af0decf1d9 *** empty log message ***
llvm-svn: 15290
2004-07-27 20:50:02 +00:00

9 lines
154 B
LLVM

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