* sysdeps/mips/dl-machine.h (_RTLD_PROLOGUE): Stringify using

__STRING(entry) and not #entry.
	(_RTLD_EPILOGUE): Likewise.
	* sysdeps/mips/mips64/dl-machine.h: Likewise.
This commit is contained in:
Andreas Jaeger 2000-07-25 10:32:02 +00:00
parent b297c341de
commit c52761c183
2 changed files with 8 additions and 8 deletions

View File

@ -37,13 +37,13 @@
#define OFFSET_GP_GOT 0x7ff0
#ifndef _RTLD_PROLOGUE
# define _RTLD_PROLOGUE(entry) "\n\t.globl " #entry \
"\n\t.ent " #entry \
"\n\t" #entry ":\n\t"
# define _RTLD_PROLOGUE(entry) "\n\t.globl " __STRING(entry) \
"\n\t.ent " __STRING(entry) \
"\n\t" __STRING(entry) ":\n\t"
#endif
#ifndef _RTLD_EPILOGUE
# define _RTLD_EPILOGUE(entry) "\t.end " #entry "\n"
# define _RTLD_EPILOGUE(entry) "\t.end " __STRING(entry) "\n"
#endif
/* A reloc type used for ld.so cmdline arg lookups to reject PLT entries.

View File

@ -32,13 +32,13 @@
#endif
#ifndef _RTLD_PROLOGUE
# define _RTLD_PROLOGUE(entry) "\n\t.globl " #entry \
"\n\t.ent " #entry \
"\n\t" #entry ":\n\t"
# define _RTLD_PROLOGUE(entry) "\n\t.globl " __STRING(entry) \
"\n\t.ent " __STRING(entry) \
"\n\t" __STRING(entry) ":\n\t"
#endif
#ifndef _RTLD_EPILOGUE
# define _RTLD_EPILOGUE(entry) "\t.end " #entry "\n"
# define _RTLD_EPILOGUE(entry) "\t.end " __STRING(entry) "\n"
#endif
/* A reloc type used for ld.so cmdline arg lookups to reject PLT entries.