llvm-6502/test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll
2003-09-16 15:29:54 +00:00

14 lines
350 B
LLVM

; RUN: llvm-as < %s | 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
}