mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
563ba88392
llvm-svn: 8558
16 lines
269 B
LLVM
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
|
|
}
|