diff options
author | Alan Modra <amodra@gmail.com> | 2016-10-06 08:55:23 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2016-10-06 09:36:33 +1030 |
commit | 95e61695c199a07c832153cea25ae9c331d16a3c (patch) | |
tree | b4fc6a28a03324a6c2ee0e120dcd6cac3da445e8 /gas | |
parent | 616ec3583b7b6ba0a4e581c426b700b0664a3027 (diff) | |
download | gdb-95e61695c199a07c832153cea25ae9c331d16a3c.zip gdb-95e61695c199a07c832153cea25ae9c331d16a3c.tar.gz gdb-95e61695c199a07c832153cea25ae9c331d16a3c.tar.bz2 |
bison warning fixes
* config/rl78-parse.y: Don't use deprecated %name-prefix.
* config/rx-parse.y: Likewise.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/rl78-parse.y | 2 | ||||
-rw-r--r-- | gas/config/rx-parse.y | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 7292178..22a948d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2016-10-06 Alan Modra <amodra@gmail.com> + + * config/rl78-parse.y: Don't use deprecated %name-prefix. + * config/rx-parse.y: Likewise. + 2016-09-29 Jiong Wang <jiong.wang@arm.com> PR target/20553 diff --git a/gas/config/rl78-parse.y b/gas/config/rl78-parse.y index 72a6561..dc98168 100644 --- a/gas/config/rl78-parse.y +++ b/gas/config/rl78-parse.y @@ -139,7 +139,7 @@ reg_xbc (int reg) %} -%name-prefix="rl78_" +%name-prefix "rl78_" %union { int regno; diff --git a/gas/config/rx-parse.y b/gas/config/rx-parse.y index c0e3217..72e03b7 100644 --- a/gas/config/rx-parse.y +++ b/gas/config/rx-parse.y @@ -130,7 +130,7 @@ static int sub_op2; %} -%name-prefix="rx_" +%name-prefix "rx_" %union { int regno; |