aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-14 13:03:34 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-14 15:08:48 +0200
commitfbdc1e3e8de7f49e439b6e274d3e7e07da78416e (patch)
treebd3815984855006dfdb547703a24a3f6607bd733 /sysdeps
parentb3f85fd2e43b1d69384396a6d99fa2135dbf46e3 (diff)
downloadglibc-fbdc1e3e8de7f49e439b6e274d3e7e07da78416e.zip
glibc-fbdc1e3e8de7f49e439b6e274d3e7e07da78416e.tar.gz
glibc-fbdc1e3e8de7f49e439b6e274d3e7e07da78416e.tar.bz2
i386: Do not set internal_function
All calls to functions with the internal_function attribute have been removed from assembler implementations, which means that the definition of internal_function can be changed at the C level without causing ABI issues with assembler code. _dl_fixup still uses a regparm calling convention on i386, but this is controlled through ARCH_FIXUP_ATTRIBUTE, not internal_function.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/i386/configure3
-rw-r--r--sysdeps/i386/configure.ac2
2 files changed, 0 insertions, 5 deletions
diff --git a/sysdeps/i386/configure b/sysdeps/i386/configure
index 5b55c5a..4d6685f 100644
--- a/sysdeps/i386/configure
+++ b/sysdeps/i386/configure
@@ -77,8 +77,5 @@ if test $libc_cv_asm_mpx = yes; then
fi
-$as_echo "#define USE_REGPARMS 1" >>confdefs.h
-
-
$as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h
diff --git a/sysdeps/i386/configure.ac b/sysdeps/i386/configure.ac
index 19ef33f..f7766ad 100644
--- a/sysdeps/i386/configure.ac
+++ b/sysdeps/i386/configure.ac
@@ -45,8 +45,6 @@ if test $libc_cv_asm_mpx = yes; then
AC_DEFINE(HAVE_MPX_SUPPORT)
fi
-AC_DEFINE(USE_REGPARMS)
-
dnl It is always possible to access static and hidden symbols in an
dnl position independent way.
AC_DEFINE(PI_STATIC_AND_HIDDEN)