aarch64: Fix tst-makecontext3 in ILP32 mode.
authorSteve Ellcey <sellcey@caviumnetworks.com>
Wed, 30 Aug 2017 16:25:51 +0000 (09:25 -0700)
committerSteve Ellcey <sellcey@caviumnetworks.com>
Wed, 30 Aug 2017 16:25:51 +0000 (09:25 -0700)
* sysdeps/unix/sysv/linux/aarch64/makecontext.c (__makecontext):
Use pointer to uint64_t instead of long int for sp.

ChangeLog
sysdeps/unix/sysv/linux/aarch64/makecontext.c

index 086b21cc69b2284f43c826d8b1e916df7a7f8fa2..8a1b3baa0794fa5df6f45b98d8a6ea76dc8bc4aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-08-30  Steve Ellcey  <sellcey@cavium.com>
+
+       * sysdeps/unix/sysv/linux/aarch64/makecontext.c (__makecontext):
+       Use pointer to uint64_t instead of long int for sp.
+
 2017-08-30  Florian Weimer  <fweimer@redhat.com>
 
        [BZ #21754]
index f510f48e9f5a8e345a33d6419c697f6399f1d8ce..20057f89261bf10f52322b310994ba27e97fd402 100644 (file)
@@ -42,18 +42,18 @@ void
 __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...)
 {
   extern void __startcontext (void);
-  unsigned long int *sp;
+  uint64_t *sp;
   va_list ap;
   int i;
 
-  sp = (unsigned long int *)
+  sp = (uint64_t *)
     ((uintptr_t) ucp->uc_stack.ss_sp + ucp->uc_stack.ss_size);
 
   /* Allocate stack arguments.  */
   sp -= argc < 8 ? 0 : argc - 8;
 
   /* Keep the stack aligned.  */
-  sp = (unsigned long int *) (((uintptr_t) sp) & -16L);
+  sp = (uint64_t *) (((uintptr_t) sp) & -16L);
 
   ucp->uc_mcontext.regs[19] = (uintptr_t) ucp->uc_link;
   ucp->uc_mcontext.sp = (uintptr_t) sp;
@@ -64,9 +64,9 @@ __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...)
   va_start (ap, argc);
   for (i = 0; i < argc; ++i)
     if (i < 8)
-      ucp->uc_mcontext.regs[i] = va_arg (ap, unsigned long int);
+      ucp->uc_mcontext.regs[i] = va_arg (ap, uint64_t);
     else
-      sp[i - 8] = va_arg (ap, unsigned long int);
+      sp[i - 8] = va_arg (ap, uint64_t);
 
   va_end (ap);
 }