diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-31 22:38:00 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-31 22:38:00 +0000 |
commit | 461283528ec07c62ed1892f9525659d042494f84 (patch) | |
tree | 8f723531fad1d0e7e82007a22888b9cc79792583 /gcc/config/xtensa/xtensa.h | |
parent | 9878c8d90bd12836fb07906226700c39ad1aa67d (diff) | |
download | gcc-461283528ec07c62ed1892f9525659d042494f84.tar.gz |
* config/xtensa/xtensa.h (DYNAMIC_CHAIN_ADDRESS): Use GEN_INT
instead of gen_rtx_CONST_INT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77053 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/xtensa/xtensa.h')
-rw-r--r-- | gcc/config/xtensa/xtensa.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/xtensa/xtensa.h b/gcc/config/xtensa/xtensa.h index 677a5268285..825205daa04 100644 --- a/gcc/config/xtensa/xtensa.h +++ b/gcc/config/xtensa/xtensa.h @@ -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. */ |