From: Chris Lattner Date: Fri, 15 Sep 2006 16:53:11 +0000 (+0000) Subject: The inliner strips dead allocas now. Add a use to allow this test to X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=36cc500f3b30db50e7c660fdd819f367ad437eb0;p=oota-llvm.git The inliner strips dead allocas now. Add a use to allow this test to test the right thing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30393 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/Inline/alloca_test.ll b/test/Transforms/Inline/alloca_test.ll index 46c4848b955..4b474908ee2 100644 --- a/test/Transforms/Inline/alloca_test.ll +++ b/test/Transforms/Inline/alloca_test.ll @@ -5,6 +5,7 @@ int %func(int %i) { %X = alloca int + store int %i, int* %X ret int %i }