diff options
author | Fred Fish <fnf@specifix.com> | 2005-01-19 23:33:33 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2005-01-19 23:33:33 +0000 |
commit | 9c6ed8e64be00bb73575a42674d2cfc09aefeb7d (patch) | |
tree | 595f0bd20338a1d5a2de38df1a751752846c63ed | |
parent | 986e18a5a9fd736df281b9ceab32c390fb8bd9b6 (diff) | |
download | gdb-9c6ed8e64be00bb73575a42674d2cfc09aefeb7d.zip gdb-9c6ed8e64be00bb73575a42674d2cfc09aefeb7d.tar.gz gdb-9c6ed8e64be00bb73575a42674d2cfc09aefeb7d.tar.bz2 |
2005-01-19 Fred Fish <fnf@specifixinc.com>
* config/tc-mips.c (dummy_opcode): Add init for new struct member.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index a833acd..41b654c 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2005-01-19 Fred Fish <fnf@specifixinc.com> + + * config/tc-mips.c (dummy_opcode): Add init for new struct member. + 2005-01-19 Richard Sandiford <rsandifo@redhat.com> * read.c (convert_to_bignum): New function, split out from... diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index f65727a..fa96724 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -523,7 +523,7 @@ static struct mips_cl_insn prev_prev_insn; /* If we don't want information for prev_insn or prev_prev_insn, we point the insn_mo field at this dummy integer. */ -static const struct mips_opcode dummy_opcode = { NULL, NULL, 0, 0, 0, 0 }; +static const struct mips_opcode dummy_opcode = { NULL, NULL, 0, 0, 0, 0, 0 }; /* Non-zero if prev_insn is valid. */ static int prev_insn_valid; |