2003-08-24 04:06:04 +00:00
|
|
|
; This test ensures that inlining an "empty" function does not destroy the CFG
|
|
|
|
;
|
2008-03-01 09:15:35 +00:00
|
|
|
; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep br
|
2003-08-24 04:06:04 +00:00
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define i32 @func(i32 %i) {
|
|
|
|
ret i32 %i
|
2003-08-24 04:06:04 +00:00
|
|
|
}
|
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
declare void @bar()
|
2003-08-24 04:06:04 +00:00
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define i32 @main(i32 %argc) {
|
2003-08-24 04:06:04 +00:00
|
|
|
Entry:
|
2008-03-01 09:15:35 +00:00
|
|
|
%X = call i32 @func( i32 7 ) ; <i32> [#uses=1]
|
|
|
|
ret i32 %X
|
2003-08-24 04:06:04 +00:00
|
|
|
}
|
2008-03-01 09:15:35 +00:00
|
|
|
|