llvm-6502/test/Transforms/GlobalDCE/2002-08-17-FunctionDGE.ll
Reid Spencer 722bdf6633 For PR1336:
Un-XFAIL this since it now passes with fix to llvm-upgrade.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36104 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-16 02:57:47 +00:00

17 lines
488 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: llvm-upgrade < %s | llvm-as | opt -globaldce | llvm-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
}