1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-29 06:52:55 +01:00
llvm-mirror/test/Regression/Transforms/Inline/alloca_test.ll
Chris Lattner 6ea147f074 Change tests to use testrunner
new test

llvm-svn: 6399
2003-05-29 15:16:10 +00:00

20 lines
409 B
LLVM

; This test ensures that alloca instructions in the entry block for an inlined
; function are moved to the top of the function they are inlined into.
;
; RUN: as < %s | opt -inline | dis | grep -C 1 alloca | grep Entry:
int %func(int %i) {
%X = alloca int
ret int %i
}
declare void %bar()
int %main(int %argc) {
Entry:
call void %bar()
%X = call int %func(int 7)
%Y = add int %X, %argc
ret int %Y
}