ChangeLog.3: Fix comment typos.

* ChangeLog.3: Fix comment typos.
	* ChangeLog.6: Likewise.
	* config/d30v/d30v.c: Likewise.
	* config/h8300/h8300.md: Likewise.
	* config/m32r/m32r.md: Likewise.
	* config/mips/mips.c: Likewise.
	* config/mips/mips.md: Likewise.
	* config/ns32k/NOTES: Likewise.

From-SVN: r68104
This commit is contained in:
Kazu Hirata 2003-06-17 19:03:12 +00:00
parent 0d5c606b64
commit 67f63f32d5
9 changed files with 23 additions and 12 deletions

View File

@ -1,3 +1,14 @@
2003-06-17 Kazu Hirata <kazu@cs.umass.edu>
* ChangeLog.3: Fix comment typos.
* ChangeLog.6: Likewise.
* config/d30v/d30v.c: Likewise.
* config/h8300/h8300.md: Likewise.
* config/m32r/m32r.md: Likewise.
* config/mips/mips.c: Likewise.
* config/mips/mips.md: Likewise.
* config/ns32k/NOTES: Likewise.
2003-06-17 Ranjit Mathew <rmathew@hotmail.com>
Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>

View File

@ -14863,9 +14863,9 @@ Mon Jan 24 16:56:10 2000 Jim Wilson <wilson@cygnus.com>
2000-01-24 Richard Henderson <rth@cygnus.com>
* rtl.def: Add unordered fp comparisions.
* rtl.def: Add unordered fp comparisons.
* tree.def: Likewise.
* tree.h: Add ISO C 9x unordered fp comparision builtins.
* tree.h: Add ISO C 9x unordered fp comparison builtins.
* builtins.c (expand_tree_builtin): New function.
* c-typeck.c (build_function_call): Use it.

View File

@ -10043,7 +10043,7 @@ Tue Sep 25 17:13:56 CEST 2001 Jan Hubicka <jh@suse.cz>
* config/i386/i386.c (ix86_init_builtins): Correct return type
building v4hi_ftype_v4hi_int_int tree node.
(ix86_expand_sse_comi): Fix typo swapping operands.
Don't swap comparision condition, it is already swapped.
Don't swap comparison condition, it is already swapped.
(ix86_expand_sse_compare): Before swapping operands
move operand 1 into new rtx and not the target rtx.
Don't swap comparison condition, it is already swapped.

View File

@ -2891,8 +2891,8 @@ d30v_print_operand (stream, x, letter)
letter = 'T';
/* FALLTHRU */
case 'F': /* Print an appropriate suffix for a false comparision. */
case 'T': /* Print an appropriate suffix for a true comparision. */
case 'F': /* Print an appropriate suffix for a false comparison. */
case 'T': /* Print an appropriate suffix for a true comparison. */
/* Note that the sense of appropriate suffix is for conditional execution
and opposite of what branches want. Branches just use the inverse
operation. */

View File

@ -4180,7 +4180,7 @@
(pc)))]
"operands[4] = GEN_INT (- INTVAL (operands[1]));")
;; For certain (in)equaltity comparisions against a constant, we can
;; For certain (in)equaltity comparisons against a constant, we can
;; XOR the register with the constant, and test the register against
;; 0.

View File

@ -2477,7 +2477,7 @@
if (! zero_and_one (operands [2], operands [3]))
FAIL;
/* Generate the comparision that will set the carry flag. */
/* Generate the comparison that will set the carry flag. */
operands[1] = gen_compare (GET_CODE (operands[1]), m32r_compare_op0,
m32r_compare_op1, TRUE);

View File

@ -9622,7 +9622,7 @@ mips_output_conditional_branch (insn,
/* The kind of comparison we are doing. */
enum rtx_code code = GET_CODE (operands[0]);
/* Nonzero if the opcode for the comparison needs a `z' indicating
that it is a comparision against zero. */
that it is a comparison against zero. */
int need_z_p;
/* A string to use in the assembly output to represent the first
operand. */
@ -9860,7 +9860,7 @@ mips_output_conditional_branch (insn,
strcpy (buffer, "%(%<%[");
c = strchr (buffer, '\0');
/* Generate the reversed comparision. This takes four
/* Generate the reversed comparison. This takes four
bytes. */
if (float_p)
sprintf (c, "%%*b%s\t%%Z2%s",

View File

@ -6886,7 +6886,7 @@ move\\t%0,%z4\\n\\
[(set_attr "type" "branch")
(set_attr "mode" "none")])
;; Conditional branch on equality comparision.
;; Conditional branch on equality comparison.
(define_insn "branch_equality"
[(set (pc)

View File

@ -12,7 +12,7 @@ Ian Dall <ian@beware.dropbear.id.au>
The ns32x81 fpu handles most operands in hardware, but traps on NaN,
Inf and Denormalized numbers. The correct behavior can be handled by
the trap handler. This is mostly transparent to the compiler, but in
the case of floating point comparisions, the trap handler and the
the case of floating point comparisons, the trap handler and the
compiler must co-operate.
Comparing a Nan with anything (including another Nan) is an unordered
@ -90,7 +90,7 @@ For example the emitted code for the case of RLT is
which is, in effect "branch if not less than and not unordered."
These extra comparisions are safe if the trap handler doesn't set the
These extra comparisons are safe if the trap handler doesn't set the
L flag, since in that case the additional "bhi" instructions are never
taken. Also, these extra branch instructions are controlled by the
"-mieee-compare" option.