From 36cc500f3b30db50e7c660fdd819f367ad437eb0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 15 Sep 2006 16:53:11 +0000 Subject: [PATCH] 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 --- test/Transforms/Inline/alloca_test.ll | 1 + 1 file changed, 1 insertion(+) 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 } -- 2.34.1