2003-05-29 23:16:10 +08:00
|
|
|
; 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.
|
|
|
|
;
|
2012-12-30 09:28:40 +08:00
|
|
|
; RUN: opt -S -inline < %s | FileCheck %s
|
2003-05-29 23:16:10 +08:00
|
|
|
|
2008-03-01 17:15:35 +08:00
|
|
|
define i32 @func(i32 %i) {
|
2016-05-10 02:54:14 +08:00
|
|
|
%X = alloca i32
|
|
|
|
store i32 %i, i32* %X
|
|
|
|
ret i32 %i
|
2003-05-29 23:16:10 +08:00
|
|
|
}
|
|
|
|
|
2008-03-01 17:15:35 +08:00
|
|
|
declare void @bar()
|
2003-05-29 23:16:10 +08:00
|
|
|
|
2008-03-01 17:15:35 +08:00
|
|
|
define i32 @main(i32 %argc) {
|
2016-05-10 02:54:14 +08:00
|
|
|
; CHECK-LABEL: @main(
|
|
|
|
; CHECK-NEXT: Entry:
|
|
|
|
; CHECK-NEXT: [[X_I:%.*]] = alloca i32
|
|
|
|
;
|
2003-05-29 23:16:10 +08:00
|
|
|
Entry:
|
2016-05-10 02:54:14 +08:00
|
|
|
call void @bar( )
|
|
|
|
%X = call i32 @func( i32 7 )
|
|
|
|
%Y = add i32 %X, %argc
|
|
|
|
ret i32 %Y
|
2003-05-29 23:16:10 +08:00
|
|
|
}
|
2008-03-01 17:15:35 +08:00
|
|
|
|