diff options
author | Nick Clifton <nickc@redhat.com> | 2007-03-29 09:05:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-03-29 09:05:27 +0000 |
commit | e55518010951f26d1b807c4c19d1d9f635358ab6 (patch) | |
tree | 048fd238097efef4cba8970c7a9a1c7d3a706322 /gas/itbl-parse.y | |
parent | aaf9e9fd5ba92fddf4cb82bfa1e5cdf4b6234a53 (diff) | |
download | gdb-e55518010951f26d1b807c4c19d1d9f635358ab6.zip gdb-e55518010951f26d1b807c4c19d1d9f635358ab6.tar.gz gdb-e55518010951f26d1b807c4c19d1d9f635358ab6.tar.bz2 |
* itbl-ops.c (itbl_entry): Remove unnecessary and excessively long initialization.
* itbl-ops.h (enum e_processor): Initialise the e_nprocs field using ITBL_NUMBER_OF_PROCESSORS.
* itbl-parse.y (yyerror): Remove use of redundant macro PARAMS.
Diffstat (limited to 'gas/itbl-parse.y')
-rw-r--r-- | gas/itbl-parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/itbl-parse.y b/gas/itbl-parse.y index 45e10ef..ff48657 100644 --- a/gas/itbl-parse.y +++ b/gas/itbl-parse.y @@ -1,5 +1,5 @@ /* itbl-parse.y - Copyright 1997, 2002, 2003, 2005, 2006 Free Software Foundation, Inc. + Copyright 1997, 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -274,7 +274,7 @@ FIXME! hex is ambiguous with any digit static int sbit, ebit; static struct itbl_entry *insn=0; -static int yyerror PARAMS ((const char *)); +static int yyerror (const char *); %} |