diff options
author | Tom Tromey <tromey@adacore.com> | 2019-12-05 07:58:03 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-12-13 15:15:31 -0700 |
commit | fe56157f92879313e0a6f46eeaee06f71314cc04 (patch) | |
tree | 14747e0ac0dd92f2b955eec64eef707667891ac9 /gdb/contrib | |
parent | a15a95ed265962027c7a8e0269bead6e5795006f (diff) | |
download | gdb-fe56157f92879313e0a6f46eeaee06f71314cc04.zip gdb-fe56157f92879313e0a6f46eeaee06f71314cc04.tar.gz gdb-fe56157f92879313e0a6f46eeaee06f71314cc04.tar.bz2 |
Remove ATTRIBUTE_UNUSED check from ARI
The text for the ATTRIBUTE_UNUSED check in ARI is plainly incorrect
now -- gdb does in fact use ATTRIBUTE_UNUSED, and there's no issue in
doing so, when done properly.
This patch removes this check.
gdb/ChangeLog
2019-12-13 Tom Tromey <tromey@adacore.com>
* contrib/ari/gdb_ari.sh: Remove ATTRIBUTE_UNUSED check.
Change-Id: I13fd8e9b40dbaab3978dbf9b6c4228b62299d944
Diffstat (limited to 'gdb/contrib')
-rwxr-xr-x | gdb/contrib/ari/gdb_ari.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gdb/contrib/ari/gdb_ari.sh b/gdb/contrib/ari/gdb_ari.sh index ee9f16a..b5a5433 100755 --- a/gdb/contrib/ari/gdb_ari.sh +++ b/gdb/contrib/ari/gdb_ari.sh @@ -581,17 +581,6 @@ Do not use `long long'\'', instead use LONGEST" fail("long long") } -BEGIN { doc["ATTRIBUTE_UNUSED"] = "\ -Do not use ATTRIBUTE_UNUSED, do not bother (GDB is compiled with -Werror and, \ -consequently, is not able to tolerate false warnings. Since -Wunused-param \ -produces such warnings, neither that warning flag nor ATTRIBUTE_UNUSED \ -are used by GDB" - category["ATTRIBUTE_UNUSED"] = ari_regression -} -/(^|[^_[:alnum:]])ATTRIBUTE_UNUSED([^_[:alnum:]]|$)/ { - fail("ATTRIBUTE_UNUSED") -} - BEGIN { doc["ATTR_FORMAT"] = "\ Do not use ATTR_FORMAT, use ATTRIBUTE_PRINTF instead" category["ATTR_FORMAT"] = ari_regression |