mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
49caf50ce0
llvm-svn: 15427
20 lines
422 B
LLVM
20 lines
422 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: llvm-as < %s | opt -inline | llvm-dis | %prcontext alloca 1 | 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
|
|
}
|