diff options
author | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-12 01:27:20 +0000 |
---|---|---|
committer | echristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-12 01:27:20 +0000 |
commit | e2e205b3d6e6b09b26bcebaf596cef1f166d158c (patch) | |
tree | fa8bc3b697257866596f59431eca4b81d0bfba74 /gcc/emit-rtl.c | |
parent | 3ee9b9b405e9e2f13ded61ab5252f2debcd96900 (diff) | |
download | gcc-e2e205b3d6e6b09b26bcebaf596cef1f166d158c.tar.gz |
2003-04-11 Eric Christopher <echristo@redhat.com>
* emit-rtl.c (gen_rtx): Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65496 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index f4b986cbb4e..9bdfee24c01 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) |