1; RUN: llvm-as < %s | llvm-dis | FileCheck %s 2 3; Check that musttail and tail roundtrip. 4 5declare cc8191 void @t1_callee() 6define cc8191 void @t1() { 7; CHECK: tail call cc8191 void @t1_callee() 8 tail call cc8191 void @t1_callee() 9 ret void 10} 11 12declare cc8191 void @t2_callee() 13define cc8191 void @t2() { 14; CHECK: musttail call cc8191 void @t2_callee() 15 musttail call cc8191 void @t2_callee() 16 ret void 17} 18