aboutsummaryrefslogtreecommitdiff
path: root/gas/itbl-ops.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2007-03-29 09:05:27 +0000
committerNick Clifton <nickc@redhat.com>2007-03-29 09:05:27 +0000
commite55518010951f26d1b807c4c19d1d9f635358ab6 (patch)
tree048fd238097efef4cba8970c7a9a1c7d3a706322 /gas/itbl-ops.c
parentaaf9e9fd5ba92fddf4cb82bfa1e5cdf4b6234a53 (diff)
downloadfsf-binutils-gdb-e55518010951f26d1b807c4c19d1d9f635358ab6.zip
fsf-binutils-gdb-e55518010951f26d1b807c4c19d1d9f635358ab6.tar.gz
fsf-binutils-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-ops.c')
-rw-r--r--gas/itbl-ops.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/gas/itbl-ops.c b/gas/itbl-ops.c
index 7c5c749..41fa033 100644
--- a/gas/itbl-ops.c
+++ b/gas/itbl-ops.c
@@ -145,12 +145,7 @@ struct itbl_entry {
static int itbl_num_opcodes = 0;
/* Array of entries for each processor and entry type */
-static struct itbl_entry *entries[e_nprocs][e_ntypes] = {
- {0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0},
- {0, 0, 0, 0, 0, 0}
-};
+static struct itbl_entry *entries[e_nprocs][e_ntypes];
/* local prototypes */
static unsigned long build_opcode (struct itbl_entry *e);