diff options
| author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-06 11:00:28 +0000 |
|---|---|---|
| committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-06 11:00:28 +0000 |
| commit | ebe79df79a1459268f5e1e909356de7d2bb08747 (patch) | |
| tree | 73655551fc401821b70109684fcbe46c1bb9bdbf | |
| parent | 6ef4a6242a8f32f393901396e4636e8dc99eb250 (diff) | |
| download | ppe42-gcc-ebe79df79a1459268f5e1e909356de7d2bb08747.tar.gz ppe42-gcc-ebe79df79a1459268f5e1e909356de7d2bb08747.zip | |
Fix defintion of TRAMPOLINE_SIZE
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75468 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/m32r/m32r.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 109b0d68fb0..c8abdbbcd40 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-01-06 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> + + * config/m32r/m32r.h (TRAMPOLINE_LINE_SIZE): Changed + 2004-01-06 Jan Hubicka <jh@suse.cz> * i386.c (init_cumulative_args): Add handling of MMX_REGPARM. diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h index 0c7ce06a593..bc7f0d4a561 100644 --- a/gcc/config/m32r/m32r.h +++ b/gcc/config/m32r/m32r.h @@ -1271,7 +1271,7 @@ L2: .word STATIC #endif /* Length in bytes of the trampoline for entering a nested function. */ -#define TRAMPOLINE_SIZE 12 +#define TRAMPOLINE_SIZE 24 /* Emit RTL insns to initialize the variable parts of a trampoline. FNADDR is an RTX for the address of the function's pure code. |

