diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/ia64/linux.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a3d44c8..60bd1ab 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-06-29 Andrew Haley <aph@cygnus.com> + + * config/ia64/linux.h (JMP_BUF_SIZE): Size is in Pmode units, not + bytes: remove the multiply by 8. + 2000-06-29 Philipp Thomas <pthomas@suse.de> * rtl.c : Revert NLS changes. diff --git a/gcc/config/ia64/linux.h b/gcc/config/ia64/linux.h index 50e5e6f..f2e10e1 100644 --- a/gcc/config/ia64/linux.h +++ b/gcc/config/ia64/linux.h @@ -26,7 +26,7 @@ #define DONT_USE_BUILTIN_SETJMP -#define JMP_BUF_SIZE (8 * 76) +#define JMP_BUF_SIZE 76 /* Output any profiling code before the prologue. */ |
