1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/GlobalDCE/2002-09-12-Redeletion.ll
Chris Lattner 26e44e3d21 Checkin old testcase
llvm-svn: 3855
2002-09-20 14:37:46 +00:00

14 lines
345 B
LLVM

; RUN: 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
}