diff options
author | Maciej W. Rozycki <macro@codesourcery.com> | 2013-06-22 00:39:42 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@codesourcery.com> | 2013-06-22 00:39:42 +0100 |
commit | d1d5471579eb0426671bf94f2d71e61dfb204c30 (patch) | |
tree | a226e0fd379a438ff738170f8b3e0261525a7cb1 /elf | |
parent | 638faeb6fef1cfd81efe1e2b37d2bd8a8d1b175b (diff) | |
download | glibc-d1d5471579eb0426671bf94f2d71e61dfb204c30.tar glibc-d1d5471579eb0426671bf94f2d71e61dfb204c30.tar.gz glibc-d1d5471579eb0426671bf94f2d71e61dfb204c30.tar.bz2 glibc-d1d5471579eb0426671bf94f2d71e61dfb204c30.zip |
Remove dead DL_DST_REQ_STATIC code.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-dst.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/elf/dl-dst.h b/elf/dl-dst.h index 20b68d90b6..3ed95d02d5 100644 --- a/elf/dl-dst.h +++ b/elf/dl-dst.h @@ -55,7 +55,6 @@ First get the origin string if it is not available yet. \ This can only happen for the map of the executable or, when \ auditing, in ld.so. */ \ - DL_DST_REQ_STATIC (l) \ if ((l)->l_origin == NULL) \ { \ assert ((l)->l_name[0] == '\0' || IS_RTLD (l)); \ @@ -73,15 +72,3 @@ } \ \ __len; }) - -#ifdef SHARED -# define DL_DST_REQ_STATIC(l) /* nothing */ -#else -# define DL_DST_REQ_STATIC(l) \ - if ((l) == NULL) \ - { \ - const char *origin = _dl_get_origin (); \ - dst_len = (origin && origin != (char *) -1 ? strlen (origin) : 0); \ - } \ - else -#endif |