mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
af0decf1d9
llvm-svn: 15290
9 lines
154 B
LLVM
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
|
|
}
|