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 }