llvm-6502/test/Transforms/GlobalDCE/2002-08-17-FunctionDGE.ll
2003-06-28 23:23:34 +00:00

17 lines
463 B
LLVM

; Make sure that functions are removed successfully if they are referred to by
; a global that is dead. Make sure any globals they refer to die as well.
; RUN: as < %s | opt -globaldce | dis | not grep foo
%b = internal global int ()* %foo ;; Unused, kills %foo
%foo = internal global int 7 ;; Should die when function %foo is killed
implementation
internal int %foo() { ;; dies when %b dies.
%ret = load int* %foo
ret int %ret
}