// RUN: %clang_cc1 %s -triple mipsel-unknown-linux-gnu -o /dev/null -emit-llvm -verify// Test that a forward declaration that is later defined in the same TU// is allowed for musttail calls.intfunc(int i);intcaller(int i) {// expected-no-diagnostics[[clang::musttail]]returnfunc(i);}intfunc(int i) {return i +1;}