summaryrefslogtreecommitdiff
path: root/gas/itbl-ops.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2003-10-27 12:45:17 +0000
committerKazu Hirata <kazu@codesourcery.com>2003-10-27 12:45:17 +0000
commite1fb9245d47c0245f6beee099c461d39f3769087 (patch)
treed5157d724a2911d5166feba7f957afbe0bb59cb0 /gas/itbl-ops.c
parentbcacd81ec5575ccce77d255655b3b21d98039ac0 (diff)
downloadbinutils-redhat-e1fb9245d47c0245f6beee099c461d39f3769087.tar.gz
* ChangeLog: Fix typos.
* ChangeLog-9295: Likewise. * as.c: Fix comment typos. * as.h: Likewise. * atof-generic.c: Likewise. * bit_fix.h: Likewise. * frags.h: Likewise. * hash.c: Likewise. * input-file.c: Likewise. * input-scrub.c: Likewise. * itbl-ops.c: Likewise. * itbl-parse.y: Likewise. * listing.c: Likewise. * macro.h: Likewise. * read.c: Likewise. * sb.c: Likewise. * sb.h: Likewise. * symbols.c: Likewise. * symbols.h: Likewise.
Diffstat (limited to 'gas/itbl-ops.c')
-rw-r--r--gas/itbl-ops.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/itbl-ops.c b/gas/itbl-ops.c
index 09db9f7468..2d1ae45559 100644
--- a/gas/itbl-ops.c
+++ b/gas/itbl-ops.c
@@ -351,7 +351,7 @@ append_insns_as_macros (void)
printf (_("Unable to allocate memory for new instructions\n"));
return;
}
- if (size) /* copy prexisting opcodes table */
+ if (size) /* copy preexisting opcodes table */
memcpy (new_opcodes, ITBL_OPCODES, size);
/* FIXME! some NUMOPCODES are calculated expressions.
@@ -372,13 +372,13 @@ append_insns_as_macros (void)
o->name = e->name;
o->args = strdup (form_args (e));
o->mask = apply_range (e->value, e->range);
- /* FIXME how to catch durring assembly? */
+ /* FIXME how to catch during assembly? */
/* mask to identify this insn */
o->match = apply_range (e->value, e->range);
o->pinfo = 0;
#ifdef USE_MACROS
- o->mask = id++; /* FIXME how to catch durring assembly? */
+ o->mask = id++; /* FIXME how to catch during assembly? */
o->match = 0; /* for macros, the insn_isa number */
o->pinfo = INSN_MACRO;
#endif
@@ -616,7 +616,7 @@ itbl_disassemble (char *s, unsigned long insn)
struct itbl_entry *r;
unsigned long value;
- if (f == e->fields) /* First operand is preceeded by tab. */
+ if (f == e->fields) /* First operand is preceded by tab. */
strcat (s, "\t");
else /* ','s separate following operands. */
strcat (s, ",");