diff options
author | Doug Evans <dje@google.com> | 2003-06-10 22:08:45 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2003-06-10 22:08:45 +0000 |
commit | b11dcf4e7fcf7ef8557487744250b5ea27b71b9c (patch) | |
tree | bb9cd38e3ca5c32128af015c3cfe45b5f0c5efb6 /gas/cgen.c | |
parent | 5b5b78dacbb201872ab6442f3ea5faeb73f399df (diff) | |
download | gdb-b11dcf4e7fcf7ef8557487744250b5ea27b71b9c.zip gdb-b11dcf4e7fcf7ef8557487744250b5ea27b71b9c.tar.gz gdb-b11dcf4e7fcf7ef8557487744250b5ea27b71b9c.tar.bz2 |
opcodes:
* cgen-asm.in (@arch@_cgen_assemble_insn): CGEN_INSN_RELAX renamed to
CGEN_INSN_RELAXED.
* fr30-asm.c,fr30-desc.c,fr30-desc.h: Regenerate.
* frv-asm.c,frv-desc.c,frv-desc.h: Regenerate.
* ip2k-asm.c,ip2k-desc.c,ip2k-desc.h: Regenerate.
* iq2000-asm.c,iq2000-desc.c,iq2000-desc.h: Regenerate.
* m32r-asm.c,m32r-desc.c,m32r-desc.h,m32r-opc.c: Regenerate.
* openrisc-asm.c,openrisc-desc.c,openrisc-desc.h: Regenerate.
* xstormy16-asm.c,xstormy16-desc.c,xstormy16-desc.h: Regenerate.
gas:
* cgen.c (gas_cgen_finish_insn): CGEN_INSN_RELAX renamed to
CGEN_INSN_RELAXED.
* config/tc-fr30.c (md_estimate_size_before_relax): Ditto.
* config/tc-m32r.c (md_estimate_size_before_relax): Ditto.
* config/tc-openrisc.c (md_estimate_size_before_relax): Ditto.
Diffstat (limited to 'gas/cgen.c')
-rw-r--r-- | gas/cgen.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -431,7 +431,7 @@ gas_cgen_finish_insn (insn, buf, length, relax_p, result) Relaxable instructions: We need to ensure we allocate enough space for the largest insn. */ - if (CGEN_INSN_ATTR_VALUE (insn, CGEN_INSN_RELAX)) + if (CGEN_INSN_ATTR_VALUE (insn, CGEN_INSN_RELAXED)) /* These currently shouldn't get here. */ abort (); @@ -531,7 +531,7 @@ gas_cgen_finish_insn (insn, buf, length, relax_p, result) cgen_operand_lookup_by_num (gas_cgen_cpu_desc, fixups[i].opindex); /* Don't create fixups for these. That's done during relaxation. - We don't need to test for CGEN_INSN_RELAX as they can't get here + We don't need to test for CGEN_INSN_RELAXED as they can't get here (see above). */ if (relax_p && CGEN_INSN_ATTR_VALUE (insn, CGEN_INSN_RELAXABLE) |