xtensa.h (DYNAMIC_CHAIN_ADDRESS): Use GEN_INT instead of gen_rtx_CONST_INT.
authorKazu Hirata <kazu@cs.umass.edu>
Sat, 31 Jan 2004 22:38:00 +0000 (22:38 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 31 Jan 2004 22:38:00 +0000 (22:38 +0000)
* config/xtensa/xtensa.h (DYNAMIC_CHAIN_ADDRESS): Use GEN_INT
instead of gen_rtx_CONST_INT.

From-SVN: r77053

gcc/ChangeLog
gcc/config/xtensa/xtensa.h

index ebdf3675d063d29de12fde794bd83e8e42c5e585..7cc4f9f16023b22e12e2ab0942cc2e51d3262816 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/xtensa/xtensa.h (DYNAMIC_CHAIN_ADDRESS): Use GEN_INT
+       instead of gen_rtx_CONST_INT.
+
 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
 
        * target-def.h (TARGET_STRICT_ARGUMENT_NAMING): Define as
index 677a5268285476763713e64986cf629821cb3f44..825205daa04e47dcfe4ac0b7a2c05a20ff051269 100644 (file)
@@ -953,8 +953,7 @@ typedef struct xtensa_args {
    when count == 0 and the stack pointer when count > 0.  */
 
 #define DYNAMIC_CHAIN_ADDRESS(frame)                                   \
-  gen_rtx (PLUS, Pmode, frame,                                         \
-          gen_rtx_CONST_INT (VOIDmode, -3 * UNITS_PER_WORD))
+  gen_rtx (PLUS, Pmode, frame, GEN_INT (-3 * UNITS_PER_WORD))
 
 /* Define this if the return address of a particular stack frame is
    accessed from the frame pointer of the previous stack frame.  */