* sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.

Thu Mar 30 20:43:02 1995  Brendan Kehoe  <brendan@zen.org>

	* sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.
This commit is contained in:
Brendan Kehoe 1995-03-31 01:47:52 +00:00
parent b1f1136175
commit 67188fe6b0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Mar 30 20:43:02 1995 Brendan Kehoe <brendan@zen.org>
* sysdeps/mips/__longjmp.c (__longjmp): Take out CONST.
Thu Mar 30 01:38:00 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* elf/elf.h (STN_UNDEF): New macro (distinct from SHN_UNDEF, though

View File

@ -27,7 +27,7 @@ Cambridge, MA 02139, USA. */
#endif
void
DEFUN(__longjmp, (env, val_arg), CONST __jmp_buf env AND int val_arg)
DEFUN(__longjmp, (env, val_arg), __jmp_buf env AND int val_arg)
{
/* gcc 1.39.19 miscompiled the longjmp routine (as it did setjmp before
the hack around it); force it to use $a1 for the longjmp value.