1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

*** empty log message ***

llvm-svn: 15290
This commit is contained in:
Robert Bocchino 2004-07-27 20:50:02 +00:00
parent 5a8680850f
commit af0decf1d9

View File

@ -0,0 +1,8 @@
; 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
}