aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/musttail24.c
blob: 10c2d3f188d891a46aa9355e5d32396abd867a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "" } */

#if !__has_attribute (musttail)
#error missing musttail attribute
#endif
#ifdef __cplusplus
#if !__has_cpp_attribute (gnu::musttail)
#error missing gnu::musttail attribute
#endif
#if !__has_cpp_attribute (clang::musttail)
#error missing clang::musttail attribute
#endif
#else
#if !__has_c_attribute (gnu::musttail)
#error missing gnu::musttail attribute
#endif
#if !__has_c_attribute (clang::musttail)
#error missing clang::musttail attribute
#endif
#endif