diff options
author | Andreas Jaeger <aj@suse.de> | 2000-11-20 07:54:19 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-11-20 07:54:19 +0000 |
commit | c45c8be68d4fb1ce54c2d1f82d16cc829688bc3d (patch) | |
tree | 359efdf7f1a1e827369e468a6cf0e2f5b4dff6f9 /sysdeps/unix | |
parent | fd3e6373c842c9e01de67898a65fe01d08791d48 (diff) | |
download | glibc-c45c8be68d4fb1ce54c2d1f82d16cc829688bc3d.tar.gz glibc-c45c8be68d4fb1ce54c2d1f82d16cc829688bc3d.tar.xz glibc-c45c8be68d4fb1ce54c2d1f82d16cc829688bc3d.zip |
Fix comments
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/clone.S | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/clone.S b/sysdeps/unix/sysv/linux/mips/clone.S index cee391305c..dd7a1f56fe 100644 --- a/sysdeps/unix/sysv/linux/mips/clone.S +++ b/sysdeps/unix/sysv/linux/mips/clone.S @@ -82,15 +82,13 @@ error: /* Load up the arguments to the function. Put this block of code in its own function so that we can terminate the stack trace with our - debug info. - - At this point we have s0=arg, s1=fn. */ + debug info. */ ENTRY(__thread_start) /* cp is already loaded. */ .cprestore 16 /* The stackframe has been created on entry of clone(). */ - /* Resort the arg for user's function. */ + /* Restore the arg for user's function. */ lw t9,0(sp) /* Function pointer. */ lw a0,4(sp) /* Argument pointer. */ |