1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Transforms/GlobalDCE/2002-07-17-CastRef.ll

13 lines
184 B
LLVM
Raw Normal View History

2002-07-18 06:25:11 +02:00
; RUN: as < %s | opt -globaldce
;
implementation
internal void %func() { ; Not dead, can be reachable via X
ret void
}
void %main() {
%X = cast void()* %func to int*
ret void
}