llvm-6502/test/Transforms/Inline/cfg_preserve_test.ll
2003-09-16 15:29:54 +00:00

16 lines
269 B
LLVM

; This test ensures that inlining an "empty" function does not destroy the CFG
;
; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep br
int %func(int %i) {
ret int %i
}
declare void %bar()
int %main(int %argc) {
Entry:
%X = call int %func(int 7)
ret int %X
}