blob: 7548b52ddef8911a493fbcdf26afa4632030c0dd (
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-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
}
|