mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
New testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3380 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
41661fdb2e
commit
09540e2cc5
19
test/Transforms/GlobalDCE/2002-08-17-FunctionDGE.ll
Normal file
19
test/Transforms/GlobalDCE/2002-08-17-FunctionDGE.ll
Normal file
@ -0,0 +1,19 @@
|
||||
; 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: if as < %s | opt -globaldce | dis | grep foo
|
||||
; RUN: then exit 1
|
||||
; RUN: else exit 0
|
||||
; RUN: fi
|
||||
|
||||
%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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user