From 15c812e3f797b5245679b768aa1b11c718403dea Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Sat, 12 Apr 2003 01:27:20 +0000 Subject: [PATCH] emit-rtl.c (gen_rtx): Fix typos. 2003-04-11 Eric Christopher * emit-rtl.c (gen_rtx): Fix typos. From-SVN: r65496 --- gcc/ChangeLog | 4 ++++ gcc/emit-rtl.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fa45322..b288c77 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-04-11 Eric Christopher + + * emit-rtl.c (gen_rtx): Fix typos. + 2003-04-11 Richard Henderson * emit-rtl.c (gen_rtx): Zero '0' fields. diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index f4b986c..9bdfee2 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -240,7 +240,7 @@ const_double_htab_hash (x) h = CONST_DOUBLE_LOW (value) ^ CONST_DOUBLE_HIGH (value); 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. */ h ^= GET_MODE (value); } @@ -756,7 +756,7 @@ gen_rtx VPARAMS ((enum rtx_code code, enum machine_mode mode, ...)) switch (*fmt++) { case '0': /* Field with unknown use. Zero it. */ - X0EXP (rt, 1) = NULL_RTX; + XEXP (rt_val, 1) = NULL_RTX; break; case 'i': /* An integer? */ @@ -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 object to contain the negative offset. */ if (apply_bitpos) -- 2.7.4