aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1996-09-17 12:09:43 -0700
committerJim Wilson <wilson@gcc.gnu.org>1996-09-17 12:09:43 -0700
commit55ebdce3ee313d5207db469f9b9cec2a5d270650 (patch)
tree43509099e5337cd381876c6b358cdbc13e7a3f40 /gcc
parent653bd7a66072795b40b00ad455bdfd2d0ba75d43 (diff)
downloadgcc-55ebdce3ee313d5207db469f9b9cec2a5d270650.zip
gcc-55ebdce3ee313d5207db469f9b9cec2a5d270650.tar.gz
gcc-55ebdce3ee313d5207db469f9b9cec2a5d270650.tar.bz2
(LEGITIMIZE_ADDRESS): typo fixes (x -> X).
From-SVN: r12730
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/sh/sh.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h
index b3ac9c9..f410396 100644
--- a/gcc/config/sh/sh.h
+++ b/gcc/config/sh/sh.h
@@ -1067,7 +1067,7 @@ extern struct rtx_def *sh_builtin_saveregs ();
#define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN) \
{ \
- if (GET_CODE (x) == PLUS \
+ if (GET_CODE (X) == PLUS \
&& (GET_MODE_SIZE (MODE) == 4 \
|| GET_MODE_SIZE (MODE) == 8) \
&& GET_CODE (XEXP (X, 1)) == CONST_INT \
@@ -1092,11 +1092,11 @@ extern struct rtx_def *sh_builtin_saveregs ();
offset_base = offset & ~60; \
/* Sometimes the normal form does not suit DImode. We \
could avoid that by using smaller ranges, but that \
- would give less optimized code when SImode is
+ would give less optimized code when SImode is \
prevalent. */ \
if (GET_MODE_SIZE (MODE) + offset - offset_base <= 64) \
{ \
- sum = expand_binop (Pmode, add_optab, XEXP (x, 0), \
+ sum = expand_binop (Pmode, add_optab, XEXP (X, 0), \
GEN_INT (offset_base), NULL_RTX, 0, \
OPTAB_LIB_WIDEN); \
\