diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-28 15:29:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-28 15:29:45 +0000 |
commit | 43aa4e05ea72d300ede141b3222e54f77c6ea4a7 (patch) | |
tree | d6229d36c3ba1bde96e6ff5cf2b04b6fb1b8d777 /gcc/genattrtab.c | |
parent | 13e8651c8a52719e6e5a8b4b1a6552bffd7bcd79 (diff) | |
download | gcc-43aa4e05ea72d300ede141b3222e54f77c6ea4a7.tar.gz |
ChangeLog.4: Fix typos.
* ChangeLog.4: Fix typos.
* ChangeLog.6: Likewise.
* FSFChangeLog.10: Likewise.
* genattrtab.c: Fix comment typos.
* haifa-sched.c: Likewise.
* real.c: Likewise.
* tree.h: Likewise.
* config/arm/arm.c: Likewise.
* config/arm/crti.asm: Likewise.
* config/arm/crtn.asm: Likewise.
* config/frv/frv.c: Likewise.
* config/frv/frv.md: Likewise.
* config/h8300/h8300.md: Likewise.
* config/i386/rtemself.h: Likewise.
* config/ia64/unwind-ia64.c: Likewise.
* config/ip2k/ip2k.h: Likewise.
* config/m88k/m88k.c: Likewise.
* config/m88k/m88k.md: Likewise.
* config/mips/sr71k.md: Likewise.
* config/mmix/mmix.c: Likewise.
* config/rs6000/rs6000.c: Likewise.
* config/sh/sh.md: Likewise.
From-SVN: r57614
Diffstat (limited to 'gcc/genattrtab.c')
-rw-r--r-- | gcc/genattrtab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c index bbc5a45c3eb..47a6f00c25e 100644 --- a/gcc/genattrtab.c +++ b/gcc/genattrtab.c @@ -1838,7 +1838,7 @@ operate_exp (op, left, right) The first produces a function `function_units_used' which is given an insn and produces an encoding showing which function units are required for the execution of that insn. If the value is non-negative, the insn - uses that unit; otherwise, the value is a one's compliment mask of units + uses that unit; otherwise, the value is a one's complement mask of units used. The second produces a function `result_ready_cost' which is used to @@ -2246,7 +2246,7 @@ simplify_knowing (exp, known_true) /* Translate the CONST_STRING expressions in X to change the encoding of value. On input, the value is a bitmask with a one bit for each unit used; on output, the value is the unit number (zero based) if one - and only one unit is used or the one's compliment of the bitmask. */ + and only one unit is used or the one's complement of the bitmask. */ static rtx encode_units_mask (x) @@ -2264,7 +2264,7 @@ encode_units_mask (x) case CONST_STRING: i = atoi (XSTR (x, 0)); if (i < 0) - /* The sign bit encodes a one's compliment mask. */ + /* The sign bit encodes a one's complement mask. */ abort (); else if (i != 0 && i == (i & -i)) /* Only one bit is set, so yield that unit number. */ |