aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/musttail8.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/c-c++-common/musttail8.c')
-rw-r--r--gcc/testsuite/c-c++-common/musttail8.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/testsuite/c-c++-common/musttail8.c b/gcc/testsuite/c-c++-common/musttail8.c
index 50ca1ac..9a29030 100644
--- a/gcc/testsuite/c-c++-common/musttail8.c
+++ b/gcc/testsuite/c-c++-common/musttail8.c
@@ -10,8 +10,9 @@ int f2(void)
int f3(int *);
-int f4(void)
+int f4(int *p)
{
int x;
- [[gnu::musttail]] return f3(&x); /* { dg-error "\(refers to locals|other reasons\)" } */
+ (void) p;
+ [[gnu::musttail]] return f3(&x); /* { dg-warning "address of automatic variable 'x' passed to 'musttail' call argument" } */
}