blob: c444f3a2298e73b14c619539eedd51529a8d9cfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
; This test ensures that inlining an "empty" function does not destroy the CFG
;
; RUN: llvm-upgrade < %s | llvm-as | 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
}
|