2001-04-04 David Mosberger <davidm@hpl.hp.com>
* sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Fix
initialization of stack_end (bug reported by Zheng Gengbin
<gzheng@students.uiuc.edu>).
+2001-04-04 David Mosberger <davidm@hpl.hp.com>
+
+ * sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Fix
+ initialization of stack_end (bug reported by Zheng Gengbin
+ <gzheng@students.uiuc.edu>).
+
2001-04-05 Ulrich Drepper <drepper@redhat.com>
* sysdeps/i386/fpu/libm-test-ulps: Relax errors for asinl.
stack_end = (long) sc->sc_stack.ss_sp + sc->sc_stack.ss_size;
stack_start = (stack_start + 7) & -8;
- stack_end = (stack_start + 15) & -16;
+ stack_end = stack_end & -16;
if (argc > 8)
{