diff options
author | Ilya Leoshkevich <iii@linux.ibm.com> | 2020-12-11 00:54:49 +0100 |
---|---|---|
committer | Ilya Leoshkevich <iii@linux.ibm.com> | 2020-12-14 21:57:32 +0100 |
commit | 057dc81f820bfa3b1f9c676c416421effa5c3661 (patch) | |
tree | 7d2b54af3693d67a7166d70d9abefada429301b4 /fixincludes | |
parent | fe7f75cf16783589eedbab597e6d0b8d35d7e470 (diff) | |
download | gcc-057dc81f820bfa3b1f9c676c416421effa5c3661.zip gcc-057dc81f820bfa3b1f9c676c416421effa5c3661.tar.gz gcc-057dc81f820bfa3b1f9c676c416421effa5c3661.tar.bz2 |
aix: Fixinclude updates [PR98208]
After 92648faa1cb2 ("aix: Fixinclude") make check-fixincludes began to
fail (at least on gcc121 machine). Fix by updating fixincludes/tests
and rerunning genfixes.
Co-developed-by: Nathan Sidwell <nathan@acm.org>
fixincludes/ChangeLog:
2020-12-11 Ilya Leoshkevich <iii@linux.ibm.com>
* fixincl.x: Rerun genfixes.
* inclhack.def(aix_physadr_t): Change test_text to something
that needs to be replaced.
* tests/base/sys/types.h(aix_physadr_t): Add expectation.
Diffstat (limited to 'fixincludes')
-rw-r--r-- | fixincludes/fixincl.x | 4 | ||||
-rw-r--r-- | fixincludes/inclhack.def | 2 | ||||
-rw-r--r-- | fixincludes/tests/base/sys/types.h | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/fixincludes/fixincl.x b/fixincludes/fixincl.x index 2143965..cc17edf 100644 --- a/fixincludes/fixincl.x +++ b/fixincludes/fixincl.x @@ -2,11 +2,11 @@ * * DO NOT EDIT THIS FILE (fixincl.x) * - * It has been AutoGen-ed October 21, 2020 at 10:43:22 AM by AutoGen 5.18.16 + * It has been AutoGen-ed December 9, 2020 at 11:16:08 AM by AutoGen 5.18.16 * From the definitions inclhack.def * and the template file fixincl */ -/* DO NOT SVN-MERGE THIS FILE, EITHER Wed Oct 21 10:43:22 EDT 2020 +/* DO NOT SVN-MERGE THIS FILE, EITHER Wed Dec 9 11:16:08 EST 2020 * * You must regenerate it. Use the ./genfixes script. * diff --git a/fixincludes/inclhack.def b/fixincludes/inclhack.def index 80c9adf..3a4cfe0 100644 --- a/fixincludes/inclhack.def +++ b/fixincludes/inclhack.def @@ -731,7 +731,7 @@ fix = { select = "typedef[ \t]*struct[ \t]*([{][^}]*[}][ \t]*\\*[ \t]*physadr_t;)"; c_fix = format; c_fix_arg = "typedef struct __physadr_s %1"; - test_text = "typedef struct __physadr_s {"; + test_text = "typedef struct { random stuff } * physadr_t;"; }; /* diff --git a/fixincludes/tests/base/sys/types.h b/fixincludes/tests/base/sys/types.h index 683b5e9..7340e76 100644 --- a/fixincludes/tests/base/sys/types.h +++ b/fixincludes/tests/base/sys/types.h @@ -9,6 +9,11 @@ +#if defined( AIX_PHYSADR_T_CHECK ) +typedef struct __physadr_s { random stuff } * physadr_t; +#endif /* AIX_PHYSADR_T_CHECK */ + + #if defined( GNU_TYPES_CHECK ) #if !defined(_GCC_PTRDIFF_T) #define _GCC_PTRDIFF_T |