]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Optimize if HAVE_BROKEN_ALIAS_ATTRIBUTE is not defined.
authorUlrich Drepper <drepper@redhat.com>
Sat, 3 Aug 2002 18:40:18 +0000 (18:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 3 Aug 2002 18:40:18 +0000 (18:40 +0000)
include/libc-symbols.h

index 84ee166e99fde9bce406ba74746788411623c1e3..74fea25e9ec34278374819bcdae8f28177b6f568 100644 (file)
    versioned_symbol (libc, __real_foo, foo, GLIBC_2_1);
    libc_hidden_ver (__real_foo, foo)  */
 
-#if defined SHARED && defined DO_VERSIONING
+#if defined SHARED && defined DO_VERSIONING \
+    && !defined HAVE_BROKEN_ALIAS_ATTRIBUTE
 # ifndef __ASSEMBLER__
 #  ifdef HAVE_BROKEN_VISIBILITY_ATTRIBUTE
 #   define __hidden_proto_hiddenattr
 #  else
 #   define __hidden_proto_hiddenattr attribute_hidden
 #  endif
-#  ifndef HAVE_BROKEN_ALIAS_ATTRIBUTE
-#   define hidden_proto(name) __hidden_proto (name, __GI_##name)
-#  else
-#   define hidden_proto(name)
-#  endif
+#  define hidden_proto(name) __hidden_proto (name, __GI_##name)
 #  define __hidden_proto(name, internal) \
   __typeof (name) internal; \
   __typeof (name) name __asm__ (__hidden_asmname (#internal)) \