1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00
llvm-mirror/test/Transforms/GlobalDCE/2002-07-17-CastRef.ll
2007-01-17 07:59:14 +00:00

13 lines
204 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | 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
}