diff options
author | Andrew Haley <aph@cygnus.com> | 2000-06-29 17:26:12 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-06-29 17:26:12 +0000 |
commit | aa936f1ce1724ddfba353df50bec0ab0e333df8a (patch) | |
tree | 84572c6bf6a60dce2fc11d9f49c3d01d42abb609 | |
parent | 61d5c158833392a84403997867962ca7368392ee (diff) | |
download | gcc-aa936f1ce1724ddfba353df50bec0ab0e333df8a.zip gcc-aa936f1ce1724ddfba353df50bec0ab0e333df8a.tar.gz gcc-aa936f1ce1724ddfba353df50bec0ab0e333df8a.tar.bz2 |
linux.h (JMP_BUF_SIZE): Size is in Pmode units, not bytes: remove the multiply by 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.
From-SVN: r34783
-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. */ |