mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
4572ce85b0
llvm-svn: 33296
14 lines
365 B
LLVM
14 lines
365 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -globaldce
|
|
|
|
%foo = internal global int 7 ;; Should die when function %foo is killed
|
|
|
|
%bar = internal global [2x { int *, int }] [ { int *, int } { int* %foo, int 7}, {int*, int} { int* %foo, int 1 }]
|
|
|
|
implementation
|
|
|
|
internal int %foo() { ;; dies when %b dies.
|
|
%ret = load int* %foo
|
|
ret int %ret
|
|
}
|
|
|