Revert "[lldb][test] Remove compiler version check and use regex" (#124101)
[llvm-project.git] / clang / test / CodeGen / PowerPC / musttail-forward-declaration.c
blob061a7a8c2da9d4edc66e893d3ddf3e351cb2d397
1 // RUN: %clang_cc1 %s -triple powerpc64le-unknown-linux-gnu -o /dev/null -emit-llvm -verify=good
2 // RUN: %clang_cc1 %s -triple powerpc64-unknown-linux-gnu -o /dev/null -emit-llvm -verify=good
4 int func2(int i);
5 int external_call2(int i) {
6 // good-no-diagnostics
7 [[clang::musttail]] return func2(i);
9 int func2(int i) {
10 return 0;