* sysdeps/unix/sysv/linux/m68k/sysdep.h (INLINE_SYSCALL): Don't

mark asm input operand as clobbered.
	* sysdeps/unix/sysv/linux/m68k/brk.c (__brk): Likewise.
This commit is contained in:
Andreas Schwab 2001-07-22 18:18:58 +00:00
parent 3cb0c69c68
commit 5bb17da079
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2001-07-22 Andreas Schwab <schwab@suse.de>
* sysdeps/unix/sysv/linux/m68k/sysdep.h (INLINE_SYSCALL): Don't
mark asm input operand as clobbered.
* sysdeps/unix/sysv/linux/m68k/brk.c (__brk): Likewise.
2001-07-22 Ulrich Drepper <drepper@redhat.com>
* iconv/gconv_builtin.c (struct builtin_map): Remove init and end

View File

@ -40,7 +40,7 @@ __brk (void *addr)
"trap #0" /* Perform the system call. */
: "=d" (d0)
: "0" (SYS_ify (brk)), "g" (addr)
: "%d0", "%d1");
: "%d1");
newbrk = (void *) d0;
}
__curbrk = newbrk;