1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/Transforms/InstCombine/2004-05-07-UnsizedCastLoad.ll
2007-01-17 07:59:14 +00:00

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
}