diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2002-05-20 18:35:43 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2002-05-20 18:35:43 +0000 |
commit | b91b4d00d0bdc9c29a43a3cf859f1444273495cd (patch) | |
tree | 0e170cd94c3cddbf1761f494430a97878f4547ce /libc/sysdeps/linux | |
parent | 1e811cd2c026257eb9adc27f0978698cdc226c26 (diff) |
Changes needed for MIPS with regards to the .init and .fini sections.
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/common/initfini.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/common/initfini.c b/libc/sysdeps/linux/common/initfini.c index 4f95fbfd1..a0b2869d9 100644 --- a/libc/sysdeps/linux/common/initfini.c +++ b/libc/sysdeps/linux/common/initfini.c @@ -101,9 +101,7 @@ _init (void) /* Now the epilog. */ asm ("\n/*@_init_PROLOG_ENDS*/"); asm ("\n/*@_init_EPILOG_BEGINS*/"); - SECTION(".init"); } -asm ("END_INIT"); /* End of the _init epilog, beginning of the _fini prolog. */ asm ("\n/*@_init_EPILOG_ENDS*/"); @@ -130,9 +128,7 @@ _fini (void) /* Beginning of the _fini epilog. */ asm ("\n/*@_fini_EPILOG_BEGINS*/"); - SECTION (".fini"); } -asm ("END_FINI"); /* End of the _fini epilog. Any further generated assembly (e.g. .ident) is shared between both crt files. */ |