diff options
author | Richard Henderson <rth@redhat.com> | 2002-02-05 22:58:31 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-02-05 22:58:31 -0800 |
commit | c2c9f6c92e696342f41e2abc5b8317ca977bf7c2 (patch) | |
tree | b52c7ae16628063bcfa2e09ecc7902acbb5004a7 | |
parent | 65c9eafb7b85d898a2ff00629be9a8ea75cd789f (diff) | |
download | gcc-c2c9f6c92e696342f41e2abc5b8317ca977bf7c2.zip gcc-c2c9f6c92e696342f41e2abc5b8317ca977bf7c2.tar.gz gcc-c2c9f6c92e696342f41e2abc5b8317ca977bf7c2.tar.bz2 |
* config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): No stack bias.
From-SVN: r49538
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bdaa34a..cd004a5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-02-05 Richard Henderson <rth@redhat.com> + + * config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): No stack bias. + 2002-02-06 Hans-Peter Nilsson <hp@bitrange.com> Implement using "base addresses" in insn operands as default. diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 7b79323..4019a69 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -1567,7 +1567,7 @@ extern const char leaf_reg_remap[]; /* Offset from the argument pointer register value to the CFA. This is different from FIRST_PARM_OFFSET because the register window comes between the CFA and the arguments. */ -#define ARG_POINTER_CFA_OFFSET(FNDECL) SPARC_STACK_BIAS +#define ARG_POINTER_CFA_OFFSET(FNDECL) 0 /* When a parameter is passed in a register, stack space is still allocated for it. |