Commit 55ebdce3 by Jim Wilson

(LEGITIMIZE_ADDRESS): typo fixes (x -> X).

From-SVN: r12730
parent 653bd7a6
...@@ -1067,7 +1067,7 @@ extern struct rtx_def *sh_builtin_saveregs (); ...@@ -1067,7 +1067,7 @@ extern struct rtx_def *sh_builtin_saveregs ();
#define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN) \ #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) == 4 \
|| GET_MODE_SIZE (MODE) == 8) \ || GET_MODE_SIZE (MODE) == 8) \
&& GET_CODE (XEXP (X, 1)) == CONST_INT \ && GET_CODE (XEXP (X, 1)) == CONST_INT \
...@@ -1092,11 +1092,11 @@ extern struct rtx_def *sh_builtin_saveregs (); ...@@ -1092,11 +1092,11 @@ extern struct rtx_def *sh_builtin_saveregs ();
offset_base = offset & ~60; \ offset_base = offset & ~60; \
/* Sometimes the normal form does not suit DImode. We \ /* Sometimes the normal form does not suit DImode. We \
could avoid that by using smaller ranges, but that \ 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. */ \ prevalent. */ \
if (GET_MODE_SIZE (MODE) + offset - offset_base <= 64) \ 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, \ GEN_INT (offset_base), NULL_RTX, 0, \
OPTAB_LIB_WIDEN); \ OPTAB_LIB_WIDEN); \
\ \
......
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