Checkin old testcase
authorChris Lattner <sabre@nondot.org>
Fri, 20 Sep 2002 14:37:46 +0000 (14:37 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 Sep 2002 14:37:46 +0000 (14:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3855 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2002-09-08-PointerShifts.c [new file with mode: 0644]
test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll [new file with mode: 0644]

diff --git a/test/CFrontend/2002-09-08-PointerShifts.c b/test/CFrontend/2002-09-08-PointerShifts.c
new file mode 100644 (file)
index 0000000..ce2c2ad
--- /dev/null
@@ -0,0 +1,4 @@
+
+int foo(int *A, unsigned X) {
+       return A[X];
+}
diff --git a/test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll b/test/Transforms/GlobalDCE/2002-09-12-Redeletion.ll
new file mode 100644 (file)
index 0000000..b6e9b69
--- /dev/null
@@ -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
+}
+