about summary refs log tree commit diff
path: root/ports
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2012-07-10 10:35:27 -0400
committerChris Metcalf <cmetcalf@tilera.com>2012-07-10 10:38:18 -0400
commitba7fefc8e00d027e0298d180aecce0689f660329 (patch)
treed9ae3f92b31698188af88dadd2e900aa6ef44745 /ports
parent5f5bcf71f753089c82741578853c5c866d1839e1 (diff)
downloadglibc-ba7fefc8e00d027e0298d180aecce0689f660329.tar.gz
glibc-ba7fefc8e00d027e0298d180aecce0689f660329.tar.xz
glibc-ba7fefc8e00d027e0298d180aecce0689f660329.zip
tile: correct typo in comment
Diffstat (limited to 'ports')
-rw-r--r--ports/ChangeLog.tile3
-rw-r--r--ports/sysdeps/unix/sysv/linux/tile/makecontext.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ports/ChangeLog.tile b/ports/ChangeLog.tile
index 3c61b8000d..aa9c52a330 100644
--- a/ports/ChangeLog.tile
+++ b/ports/ChangeLog.tile
@@ -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.
 
diff --git a/ports/sysdeps/unix/sysv/linux/tile/makecontext.c b/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
index e3f66bccb0..d7584e0724 100644
--- a/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
+++ b/ports/sysdeps/unix/sysv/linux/tile/makecontext.c
@@ -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)