diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-05 20:26:40 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-05 20:26:40 +0000 |
commit | 5556231db2301917cd14a7450de4eba2368c9763 (patch) | |
tree | 2456b4a2ec7e4377c420b2f94285dddb53784e5f /ports/sysdeps/mips/start.S | |
parent | 869378a5bf1d415f52c14d9697b886d8143a73e1 (diff) | |
download | glibc-5556231db2301917cd14a7450de4eba2368c9763.tar glibc-5556231db2301917cd14a7450de4eba2368c9763.tar.gz glibc-5556231db2301917cd14a7450de4eba2368c9763.tar.bz2 glibc-5556231db2301917cd14a7450de4eba2368c9763.zip |
Remove trailing whitespace in ports.
Diffstat (limited to 'ports/sysdeps/mips/start.S')
-rw-r--r-- | ports/sysdeps/mips/start.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/sysdeps/mips/start.S b/ports/sysdeps/mips/start.S index 83a68959a3..75ab477395 100644 --- a/ports/sysdeps/mips/start.S +++ b/ports/sysdeps/mips/start.S @@ -70,7 +70,7 @@ char **argv, void (*init) (void), void (*fini) (void), void (*rtld_fini) (void), void *stack_end) */ - + .text .globl ENTRY_POINT .type ENTRY_POINT,@function @@ -87,11 +87,11 @@ ENTRY_POINT: PTR_LA $4, main /* main */ PTR_L $5, 0($29) /* argc */ PTR_ADDIU $6, $29, PTRSIZE /* argv */ - + /* Allocate space on the stack for seven arguments (o32 only) - and make sure the stack is aligned to double words (8 bytes) + and make sure the stack is aligned to double words (8 bytes) on o32 and quad words (16 bytes) on n32 and n64. */ - + and $29, -2 * SZREG # if _MIPS_SIM == _ABIO32 PTR_SUBIU $29, 32 |