1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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

test the right thing.

llvm-svn: 30393
This commit is contained in:
Chris Lattner 2006-09-15 16:53:11 +00:00
parent d55cc3f6d8
commit 8e82bf5a4a

View File

@ -5,6 +5,7 @@
int %func(int %i) {
%X = alloca int
store int %i, int* %X
ret int %i
}