diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1997-01-17 22:11:11 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1997-01-17 22:11:11 +0000 |
commit | 9711629615dd4abf42d7981eafaaa0a7f7ff124c (patch) | |
tree | 97b6fcbfd4d3018eaa5492c0bdf831d351fbefb7 | |
parent | fcc9ad83f6a6ec0cd6b364cda10ba8fe4e576e7b (diff) | |
download | gcc-9711629615dd4abf42d7981eafaaa0a7f7ff124c.zip gcc-9711629615dd4abf42d7981eafaaa0a7f7ff124c.tar.gz gcc-9711629615dd4abf42d7981eafaaa0a7f7ff124c.tar.bz2 |
Don't define STACK_POINTER_OFFSET; just use the default value
From-SVN: r13505
-rw-r--r-- | gcc/config/mips/mips.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 7505a75..6a11338 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -1447,8 +1447,9 @@ extern char mips_hard_regno_mode_ok[][FIRST_PSEUDO_REGISTER]; /* Register to use for pushing function arguments. */ #define STACK_POINTER_REGNUM (GP_REG_FIRST + 29) -/* Offset from the stack pointer to the first available location. */ -#define STACK_POINTER_OFFSET 0 +/* Offset from the stack pointer to the first available location. Use + the default value zero. */ +/* #define STACK_POINTER_OFFSET 0 */ /* Base register for access to local variables of the function. */ #define FRAME_POINTER_REGNUM (GP_REG_FIRST + 30) |