diff options
author | Tom Tromey <tromey@adacore.com> | 2019-12-12 09:10:49 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-12-13 15:15:32 -0700 |
commit | 93537683e79f8a55c51ffa00008966e32ee8e4a7 (patch) | |
tree | 94ad54ec1cc142de6fbe81ec773db353e5a16cd2 /gdb | |
parent | 634561834ea3a089d6d535c56b923c7869c8a7c9 (diff) | |
download | gdb-93537683e79f8a55c51ffa00008966e32ee8e4a7.zip gdb-93537683e79f8a55c51ffa00008966e32ee8e4a7.tar.gz gdb-93537683e79f8a55c51ffa00008966e32ee8e4a7.tar.bz2 |
Remove "fix" call for "long long" from ARI
ARI has a "fix" call for "long long", but this call is incorrect.
This patch removes it.
gdb/ChangeLog
2019-12-13 Tom Tromey <tromey@adacore.com>
* contrib/ari/gdb_ari.sh: Remove call to "fix" for "long long".
Change-Id: I97bca2dc04b579fcf7c9dba7fe7fd939451bcefa
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rwxr-xr-x | gdb/contrib/ari/gdb_ari.sh | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d30611f..90c3742 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2019-12-13 Tom Tromey <tromey@adacore.com> + * contrib/ari/gdb_ari.sh: Remove call to "fix" for "long long". + +2019-12-13 Tom Tromey <tromey@adacore.com> + * contrib/ari/gdb_ari.sh: Handle -Wno- prefix. 2019-12-13 Tom Tromey <tromey@adacore.com> diff --git a/gdb/contrib/ari/gdb_ari.sh b/gdb/contrib/ari/gdb_ari.sh index 02c3647..5f05890 100755 --- a/gdb/contrib/ari/gdb_ari.sh +++ b/gdb/contrib/ari/gdb_ari.sh @@ -587,8 +587,6 @@ Do not use strerror(), instead use safe_strerror()" BEGIN { doc["long long"] = "\ Do not use `long long'\'', instead use LONGEST" category["long long"] = ari_code - # defs.h needs two such patterns for LONGEST and ULONGEST definitions - fix("long long", "gdb/defs.h", 2) } /(^|[^_[:alnum:]])long[[:space:]]+long([^_[:alnum:]]|$)/ { fail("long long") |