hanchenye-llvm-project/llvm/test/Transforms/GlobalDCE/2002-07-17-ConstantRef.ll

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
}