mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-23 03:59:12 +00:00
4572ce85b0
llvm-svn: 33296
10 lines
171 B
LLVM
10 lines
171 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output
|
|
|
|
%Ty = type opaque
|
|
|
|
int %test(%Ty *%X) {
|
|
%Y = cast %Ty* %X to int*
|
|
%Z = load int* %Y
|
|
ret int %Z
|
|
}
|