testsuite, Darwin: Fix darwin-comm-1.c error messages for Darwin <= 10.

When amending the allowed alignment size to accommodate the larger values
permitted by newer tools, we retained the object file limit of 2^15 for
Darwin versions <= 10, since that is what the native tools expect there.

This triggers a different diagnostic path with a distinct error message,
which is checked in the revised test here.

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>

gcc/testsuite/ChangeLog:

	* gcc.dg/darwin-comm-1.c: Check for the correct error message for
	Darwin <= 10.
This commit is contained in:
Iain Sandoe 2022-06-25 09:58:35 +01:00
parent defa8537af
commit 54a5f47848
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
/* { dg-do compile { target *-*-darwin[912]* } } */
/* { dg-do compile { target *-*-darwin* } } */
/* { dg-options "-fcommon" } */
/* In all cases, common has a max alignment of 2^15. */
int badcommon __attribute__ ((aligned (65536))); /* { dg-error "common variables must have an alignment" } */
int badcommon __attribute__ ((aligned (65536))); /* { dg-error "common variables must have an alignment" "" { target { *-*-darwin1[1-9]* *-*-darwin2* } } } */
/* { dg-error "requested alignment .65536. exceeds object file maximum 32768" "" { target { *-*-darwin[4-9]* *-*-darwin10* } } .-1 } */