1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Transforms/InstCombine/2004-05-07-UnsizedCastLoad.ll

11 lines
250 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -instcombine -disable-output
2004-05-07 17:38:50 +02:00
%Ty = type opaque
define i32 @test(%Ty* %X) {
%Y = bitcast %Ty* %X to i32* ; <i32*> [#uses=1]
%Z = load i32* %Y ; <i32> [#uses=1]
ret i32 %Z
2004-05-07 17:38:50 +02:00
}