diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2003-11-22 02:35:31 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2003-11-22 02:35:31 +0000 |
commit | 67c1ffbec916d2c18096f2a285d4f5812f20bd24 (patch) | |
tree | dfbb51279d89bfa089ec3a28a04bd665ad50f2cf /gas/config/tc-arm.c | |
parent | 834ddcc491ace97284f1ec0edd55a863e9485e95 (diff) | |
download | binutils-67c1ffbec916d2c18096f2a285d4f5812f20bd24.zip binutils-67c1ffbec916d2c18096f2a285d4f5812f20bd24.tar.gz binutils-67c1ffbec916d2c18096f2a285d4f5812f20bd24.tar.bz2 |
* config/tc-a29k.h: Fix comment typos.
* config/tc-arm.c: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-hppa.c: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-m32r.c: Likewise.
* config/tc-m68hc11.c: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m88k.c: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mips.c: Likewise.
* config/tc-mmix.c: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-pj.c: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-s390.c: Likewise.
* config/tc-sh64.c: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sparc.c: Likewise.
Diffstat (limited to 'gas/config/tc-arm.c')
-rw-r--r-- | gas/config/tc-arm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 025dd16..a684350 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -1180,7 +1180,7 @@ static const struct asm_opcode insns[] = {"mla", 0xe0200090, 3, ARM_EXT_V2, do_mla}, {"mlas", 0xe0300090, 3, ARM_EXT_V2, do_mla}, - /* Generic copressor instructions. */ + /* Generic coprocessor instructions. */ {"cdp", 0xee000000, 3, ARM_EXT_V2, do_cdp}, {"ldc", 0xec100000, 3, ARM_EXT_V2, do_lstc}, {"ldcl", 0xec500000, 3, ARM_EXT_V2, do_lstc}, @@ -2867,7 +2867,7 @@ s_unreq (int a ATTRIBUTE_UNUSED) if (!req_entry) as_bad (_("unreq: missing hash entry for \"%s\""), name); else if (req_entry->builtin) - /* FIXME: We are deleteing a built in register alias which + /* FIXME: We are deleting a built in register alias which points to a const data structure, so we only need to free up the memory used by the key in the hash table. Unfortunately we have not recorded this value, so this @@ -2876,7 +2876,7 @@ s_unreq (int a ATTRIBUTE_UNUSED) ; else { - /* Deleteing a user defined alias. We need to free the + /* Deleting a user defined alias. We need to free the key and the value, but fortunately the key is the same as the value->name field. */ free ((char *) req_entry->name); |