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

13 lines
178 B
LLVM
Raw Normal View History

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