Commit 1853aadd by Richard Kenner

Whitespace, formatting, and spelling fixes in comments.

From-SVN: r12187
parent 69685820
...@@ -2797,14 +2797,14 @@ print_operand (file, x, code) ...@@ -2797,14 +2797,14 @@ print_operand (file, x, code)
} }
abort (); abort ();
/* This is used by the conditional move instructions. */ /* This is used by the conditional move instructions. */
case 'C': case 'C':
put_condition_code (GET_CODE (x), file); put_condition_code (GET_CODE (x), file);
return; return;
/* like above but reverse condition */ /* like above, but reverse condition */
case 'N': case 'N':
put_condition_code (reverse_condition (GET_CODE (x)), file); put_condition_code (reverse_condition (GET_CODE (x)), file);
return; return;
default: default:
{ {
...@@ -4542,7 +4542,7 @@ output_strlen_unroll (operands) ...@@ -4542,7 +4542,7 @@ output_strlen_unroll (operands)
/* Generate loop to check 4 bytes at a time */ /* Generate loop to check 4 bytes at a time */
/* IMHO it is not a good idea to align this loop. It gives only */ /* IMHO it is not a good idea to align this loop. It gives only */
/* huge programms, but does not help to speed up */ /* huge programs, but does not help to speed up */
/* ASM_OUTPUT_LOOP_ALIGN (asm_out_file); */ /* ASM_OUTPUT_LOOP_ALIGN (asm_out_file); */
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "L", CODE_LABEL_NUMBER (xops[8])); ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "L", CODE_LABEL_NUMBER (xops[8]));
...@@ -4551,11 +4551,11 @@ output_strlen_unroll (operands) ...@@ -4551,11 +4551,11 @@ output_strlen_unroll (operands)
if (QI_REG_P (xops[1])) if (QI_REG_P (xops[1]))
{ {
/* on i586 it is faster to compare the hi- and lo- part */ /* On i586 it is faster to combine the hi- and lo- part as
/* as a kind of lookahead. If xoring both is zero, then one */ a kind of lookahead. If anding both yields zero, then one
/* of both *could* be zero, otherwith none of both is zero */ of both *could* be zero, otherwise none of both is zero;
/* this saves one instruction, on i486 this is slower */ this saves one instruction, on i486 this is slower
/* testet with P-90, i486DX2-66, AMD486DX2-66 */ tested with P-90, i486DX2-66, AMD486DX2-66 */
if(TARGET_PENTIUM) if(TARGET_PENTIUM)
{ {
output_asm_insn (AS2 (test%B1,%h1,%b1), xops); output_asm_insn (AS2 (test%B1,%h1,%b1), xops);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment