tile: correct typo in comment
authorChris Metcalf <cmetcalf@tilera.com>
Tue, 10 Jul 2012 14:35:27 +0000 (10:35 -0400)
committerChris Metcalf <cmetcalf@tilera.com>
Tue, 10 Jul 2012 14:38:18 +0000 (10:38 -0400)
ports/ChangeLog.tile
ports/sysdeps/unix/sysv/linux/tile/makecontext.c

index 3c61b80..aa9c52a 100644 (file)
@@ -1,5 +1,8 @@
 2012-07-10  Chris Metcalf  <cmetcalf@tilera.com>
 
+       * sysdeps/unix/sysv/linux/tile/makecontext.c (__makecontext):
+       Correct typo in comment.
+
        * sysdeps/tile/sysdep.h (ENTRY): Use .globl, not
        ASM_GLOBAL_DIRECTIVE.
 
index e3f66bc..d7584e0 100644 (file)
@@ -61,7 +61,7 @@ __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...)
   /* Set the return address to trampoline.  */
   ucp->uc_mcontext.lr = (long) __startcontext;
 
-  /* Pass ucp->uc_link to __start_context in r30.  */
+  /* Pass ucp->uc_link to __startcontext in r30.  */
   ucp->uc_mcontext.gregs[30] = (long) ucp->uc_link;
 }
 weak_alias (__makecontext, makecontext)