diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/itbl-parse.y | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index c97aa1d..ec30637 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2016-06-05 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + * itbl-parse.y (yyerror): Use modern argument declaration style. + +2016-06-05 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> + * config/tc-sh.c (parse_reg): Change type of mode argument to sh_arg_type. (get_operand): Adjust. diff --git a/gas/itbl-parse.y b/gas/itbl-parse.y index e9dac5c..b28c48e 100644 --- a/gas/itbl-parse.y +++ b/gas/itbl-parse.y @@ -450,8 +450,7 @@ value: %% static int -yyerror (msg) - const char *msg; +yyerror (const char *msg) { printf ("line %d: %s\n", insntbl_line, msg); return 0; |