14 lines
222 B
LLVM
14 lines
222 B
LLVM
|
; RUN: opt < %s -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
|
||
|
}
|