diff options
| author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-01-11 21:42:03 +0000 |
|---|---|---|
| committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-01-11 21:42:03 +0000 |
| commit | 6090393cf79412433fe5ffc73a4557b52be156ce (patch) | |
| tree | 7c07fa03365f27c5a4d1d5ce5c48b2af517ce54c | |
| parent | 136747cd27187776d1ea0c053201a19e1361b4c4 (diff) | |
| download | ppe42-gcc-6090393cf79412433fe5ffc73a4557b52be156ce.tar.gz ppe42-gcc-6090393cf79412433fe5ffc73a4557b52be156ce.zip | |
PR target/26015
* config/vax/elf.h (FRAME_POINTER_CFA_OFFSET): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131477 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/vax/elf.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 92f1cd6f74c..7deb6fdc766 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-01-11 James E. Wilson <wilson@specifix.com> + + PR target/26015 + * config/vax/elf.h (FRAME_POINTER_CFA_OFFSET): Define. + 2008-01-11 Anatoly Sokolov <aesok@post.ru> * config/avr/avr.c (expand_prologue, expand_epilogue): Don't diff --git a/gcc/config/vax/elf.h b/gcc/config/vax/elf.h index b7d75269409..3a010fdd488 100644 --- a/gcc/config/vax/elf.h +++ b/gcc/config/vax/elf.h @@ -45,6 +45,9 @@ along with GCC; see the file COPYING3. If not see count pushed by the CALLS and before the start of the saved registers. */ #define INCOMING_FRAME_SP_OFFSET 0 +/* Offset from the frame pointer register value to the top of the stack. */ +#define FRAME_POINTER_CFA_OFFSET(FNDECL) 0 + /* We use R2-R5 (call-clobbered) registers for exceptions. */ #define EH_RETURN_DATA_REGNO(N) ((N) < 4 ? (N) + 2 : INVALID_REGNUM) |

