1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2002-08-28  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/s390/s390-64/dl-machine.h: Avoid unescaped newlines in
	string constants.
	* sysdeps/sparc/sparc32/dl-machine.h: Likewise.
	* sysdeps/arm/dl-machine.h: Likewise.
	* sysdeps/cris/dl-machine.h: Likewise.
	* sysdeps/unix/sysv/linux/m68k/register-dump.h: Likewise.
	* sysdeps/unix/sysv/aix/gettimeofday.c: Likewise.
This commit is contained in:
Ulrich Drepper
2002-08-28 21:32:56 +00:00
parent 7f86dfcce9
commit 669ed63814
7 changed files with 392 additions and 381 deletions

View File

@ -1,5 +1,5 @@
/* Dump registers.
Copyright (C) 1998 Free Software Foundation, Inc.
Copyright (C) 1998, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Andreas Schwab <schwab@gnu.org>.
@ -51,15 +51,15 @@
static void __attribute__ ((unused))
__dummy__ (void)
{
asm ("
catch_segfault:
move.l 12(%%sp),%%a0
lea %c0(%%a0),%%a0
/* Clear the first 4 bytes to make it a null fp state, just
in case the handler does return. */
clr.l (%%a0)+
movem.l %%d2-%%d7/%%a2-%%a6,(%%a0)
fmovem.x %%fp2-%%fp7,11*4(%%a0)
asm ("\n\
catch_segfault:\n\
move.l 12(%%sp),%%a0\n\
lea %c0(%%a0),%%a0\n\
/* Clear the first 4 bytes to make it a null fp state, just\n\
in case the handler does return. */\n\
clr.l (%%a0)+\n\
movem.l %%d2-%%d7/%%a2-%%a6,(%%a0)\n\
fmovem.x %%fp2-%%fp7,11*4(%%a0)\n\
jra real_catch_segfault"
: : "n" (offsetof (struct sigcontext, sc_fpstate)));
}