brintos

brintos / llvm-project-archived public Read only

0
0
Text · 249 B · 368d161 Raw
16 lines · plain
1; RUN: opt < %s -passes=partial-inliner -disable-output2 3define i32 @f() {4entry:5  br label %return6 7return:                                           ; preds = %entry8  ret i32 undef9}10 11define i32 @g() {12entry:13  %0 = call i32 @f()14  ret i32 %015}16