[llvm-commits] CVS: llvm/test/Regression/Transforms/Inline/alloca_test.ll

Chris Lattner lattner at cs.uiuc.edu
Fri Sep 15 09:53:26 PDT 2006



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

alloca_test.ll updated: 1.4 -> 1.5
---
Log message:

The inliner strips dead allocas now.  Add a use to allow this test to
test the right thing.


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

 alloca_test.ll |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/test/Regression/Transforms/Inline/alloca_test.ll
diff -u llvm/test/Regression/Transforms/Inline/alloca_test.ll:1.4 llvm/test/Regression/Transforms/Inline/alloca_test.ll:1.5
--- llvm/test/Regression/Transforms/Inline/alloca_test.ll:1.4	Mon Aug  2 17:31:58 2004
+++ llvm/test/Regression/Transforms/Inline/alloca_test.ll	Fri Sep 15 11:53:11 2006
@@ -5,6 +5,7 @@
 
 int %func(int %i) {
 	%X = alloca int 
+	store int %i, int* %X
 	ret int %i
 }
 






More information about the llvm-commits mailing list