mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-13 17:00:01 +00:00
14 lines
232 B
LLVM
14 lines
232 B
LLVM
; RUN: llvm-as < %s | opt -globaldce
|
|
;
|
|
|
|
@X = global void ()* @func ; <void ()**> [#uses=0]
|
|
|
|
; Not dead, can be reachable via X
|
|
define internal void @func() {
|
|
ret void
|
|
}
|
|
|
|
define void @main() {
|
|
ret void
|
|
}
|