llvm-6502/test/Transforms/GlobalDCE/2002-07-17-ConstantRef.ll
2006-12-02 04:23:10 +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
}