David Malcolm <dmalc...@redhat.com> writes: > diff --git a/gcc/testsuite/gcc.dg/plugin/must-tail-call-2.c > b/gcc/testsuite/gcc.dg/plugin/must-tail-call-2.c > new file mode 100644 > index 0000000..c5504f8 > --- /dev/null > +++ b/gcc/testsuite/gcc.dg/plugin/must-tail-call-2.c > @@ -0,0 +1,58 @@ > +/* Allow nested functions. */ > +/* { dg-options "-Wno-pedantic" } */ > + > +struct box { char field[64]; int i; }; > + > +struct box __attribute__((noinline,noclone)) > +returns_struct (int i) > +{ > + struct box b; > + b.i = i * i; > + return b; > +} > + > +int __attribute__((noinline,noclone)) > +test_1 (int i) > +{ > + return returns_struct (i * 5).i; /* { dg-error "cannot tail-call: callee > returns a structure" } */ > +} > + > +int __attribute__((noinline,noclone)) > +test_2_callee (int i, struct box b) > +{ > + if (b.field[0]) > + return 5; > + return i * i; > +} > + > +int __attribute__((noinline,noclone)) > +test_2_caller (int i) > +{ > + struct box b; > + return test_2_callee (i + 1, b); /* { dg-error "cannot tail-call: callee > required more stack slots than the caller" } */ > +} > + > +extern void setjmp (void); > +void > +test_3 (void) > +{ > + setjmp (); /* { dg-error "cannot tail-call: callee returns twice" } */ > +} > + > +void > +test_4 (void) > +{ > + void nested (void) > + { > + } > + nested (); /* { dg-error "cannot tail-call: nested function" } */ > +} > + > +typedef void (fn_ptr_t) (void); > +volatile fn_ptr_t fn_ptr; > + > +void > +test_5 (void) > +{ > + fn_ptr (); /* { dg-error "cannot tail-call: callee does not return" } */ > +}
On aarch64: FAIL: gcc.dg/plugin/must-tail-call-2.c -fplugin=./must_tail_call_plugin.so (test for errors, line 32) FAIL: gcc.dg/plugin/must-tail-call-2.c -fplugin=./must_tail_call_plugin.so (test for excess errors) Excess errors: gcc.dg/plugin/must-tail-call-2.c:32:10: error: cannot tail-call: argument must be passed by copying Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."