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

13 lines
198 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -globaldce
;
%X = global void() * %func
implementation
internal void %func() { ; Not dead, can be reachable via X
ret void
}
void %main() {
ret void
}