[llvm-commits] CVS: llvm/test/Regression/Transforms/GlobalOpt/deadglobal-2.llx

Chris Lattner lattner at cs.uiuc.edu
Sun Oct 10 09:47:01 PDT 2004



Changes in directory llvm/test/Regression/Transforms/GlobalOpt:

deadglobal-2.llx added (r1.1)
---
Log message:

New testcase we were not handling before.


---
Diffs of the changes:  (+11 -0)

Index: llvm/test/Regression/Transforms/GlobalOpt/deadglobal-2.llx
diff -c /dev/null llvm/test/Regression/Transforms/GlobalOpt/deadglobal-2.llx:1.1
*** /dev/null	Sun Oct 10 11:46:58 2004
--- llvm/test/Regression/Transforms/GlobalOpt/deadglobal-2.llx	Sun Oct 10 11:46:48 2004
***************
*** 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
+ }






More information about the llvm-commits mailing list