Commit 15c812e3 by Eric Christopher Committed by Eric Christopher

emit-rtl.c (gen_rtx): Fix typos.

2003-04-11  Eric Christopher  <echristo@redhat.com>

	* emit-rtl.c (gen_rtx): Fix typos.

From-SVN: r65496
parent bedd8bed
2003-04-11 Eric Christopher <echristo@redhat.com>
* emit-rtl.c (gen_rtx): Fix typos.
2003-04-11 Richard Henderson <rth@redhat.com> 2003-04-11 Richard Henderson <rth@redhat.com>
* emit-rtl.c (gen_rtx): Zero '0' fields. * emit-rtl.c (gen_rtx): Zero '0' fields.
......
...@@ -240,7 +240,7 @@ const_double_htab_hash (x) ...@@ -240,7 +240,7 @@ const_double_htab_hash (x)
h = CONST_DOUBLE_LOW (value) ^ CONST_DOUBLE_HIGH (value); h = CONST_DOUBLE_LOW (value) ^ CONST_DOUBLE_HIGH (value);
else else
{ {
h = real_hash (CONST_DOUBLE_REAL_VALUE (value)); h = real_hash (CONST_DOUBLE_REAL_VALUE (value));
/* MODE is used in the comparison, so it should be in the hash. */ /* MODE is used in the comparison, so it should be in the hash. */
h ^= GET_MODE (value); h ^= GET_MODE (value);
} }
...@@ -756,7 +756,7 @@ gen_rtx VPARAMS ((enum rtx_code code, enum machine_mode mode, ...)) ...@@ -756,7 +756,7 @@ gen_rtx VPARAMS ((enum rtx_code code, enum machine_mode mode, ...))
switch (*fmt++) switch (*fmt++)
{ {
case '0': /* Field with unknown use. Zero it. */ case '0': /* Field with unknown use. Zero it. */
X0EXP (rt, 1) = NULL_RTX; XEXP (rt_val, 1) = NULL_RTX;
break; break;
case 'i': /* An integer? */ case 'i': /* An integer? */
...@@ -2047,7 +2047,7 @@ set_mem_attributes_minus_bitpos (ref, t, objectp, bitpos) ...@@ -2047,7 +2047,7 @@ set_mem_attributes_minus_bitpos (ref, t, objectp, bitpos)
} }
} }
/* If we modified OFFSET based on T, then subtract the outstanding /* If we modified OFFSET based on T, then subtract the outstanding
bit position offset. Similarly, increase the size of the accessed bit position offset. Similarly, increase the size of the accessed
object to contain the negative offset. */ object to contain the negative offset. */
if (apply_bitpos) if (apply_bitpos)
......
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