1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/Transforms/Inline/cfg_preserve_test.ll

17 lines
336 B
LLVM
Raw Normal View History

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