summaryrefslogtreecommitdiff
path: root/test/Transforms/GlobalDCE
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-20 14:37:46 +0000
committerChris Lattner <sabre@nondot.org>2002-09-20 14:37:46 +0000
commit70019ab03cdb57e51b07ca5ea8d38fc2a8da0a45 (patch)
tree540604665d2410c2011448b99dce8d2367d18e78 /test/Transforms/GlobalDCE
parent41e7891e07443082e63d1b41ddc33188ca0afaae (diff)
downloadllvm-70019ab03cdb57e51b07ca5ea8d38fc2a8da0a45.tar.gz
llvm-70019ab03cdb57e51b07ca5ea8d38fc2a8da0a45.tar.bz2
llvm-70019ab03cdb57e51b07ca5ea8d38fc2a8da0a45.tar.xz
Checkin old testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3855 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/GlobalDCE')
-rw-r--r--test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll b/test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll
new file mode 100644
index 0000000000..b6e9b69e34
--- /dev/null
+++ b/test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll
@@ -0,0 +1,13 @@
+; 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
+}
+