From: Chris Lattner Date: Sun, 10 Oct 2004 16:46:48 +0000 (+0000) Subject: New testcase we were not handling before. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ba31f8098f339acd272b5de195f3f525c17dd8e6;p=oota-llvm.git New testcase we were not handling before. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16875 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/GlobalOpt/deadglobal-2.llx b/test/Transforms/GlobalOpt/deadglobal-2.llx new file mode 100644 index 00000000000..d426aff5c6b --- /dev/null +++ b/test/Transforms/GlobalOpt/deadglobal-2.llx @@ -0,0 +1,11 @@ +; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep internal + +; This is a harder case to delete as the GEP has a variable index. + +%G = internal global [4 x int] zeroinitializer + +void %foo(int %X) { + %Ptr = getelementptr [4 x int]* %G, int 0, int %X + store int 1, int* %Ptr + ret void +}