Commit ef9b7fad by Alexander Ivchenko Committed by Kirill Yukhin

linux.c (linux_has_ifunc_p): Remove.


gcc/
	* config/linux.c (linux_has_ifunc_p): Remove.
	* config/linux.h (TARGET_HAS_IFUNC_P): Use default version.

From-SVN: r218577
parent f50eecba
2014-12-08 Alexander Ivchenko <alexander.ivchenko@intel.com>
* config/linux.c (linux_has_ifunc_p): Remove.
* config/linux.h (TARGET_HAS_IFUNC_P): Use default version.
2014-12-10 Mantas Mikaitis <mantas.mikaitis@arm.com> 2014-12-10 Mantas Mikaitis <mantas.mikaitis@arm.com>
* contrib/check_GNU_style.sh (col): Got rid of cut operation * contrib/check_GNU_style.sh (col): Got rid of cut operation
...@@ -23,14 +23,6 @@ along with GCC; see the file COPYING3. If not see ...@@ -23,14 +23,6 @@ along with GCC; see the file COPYING3. If not see
#include "tm.h" #include "tm.h"
#include "linux-protos.h" #include "linux-protos.h"
/* Android does not support GNU indirect functions. */
bool
linux_has_ifunc_p (void)
{
return OPTION_BIONIC ? false : HAVE_GNU_INDIRECT_FUNCTION;
}
bool bool
linux_libc_has_function (enum function_class fn_class) linux_libc_has_function (enum function_class fn_class)
{ {
......
...@@ -117,10 +117,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -117,10 +117,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
#else /* !uClinux, i.e., normal Linux */ #else /* !uClinux, i.e., normal Linux */
/* IFUNCs are supported by glibc, but not by uClibc or Bionic. */
# undef TARGET_HAS_IFUNC_P
# define TARGET_HAS_IFUNC_P linux_has_ifunc_p
/* Determine what functions are present at the runtime; /* Determine what functions are present at the runtime;
this includes full c99 runtime and sincos. */ this includes full c99 runtime and sincos. */
# undef TARGET_LIBC_HAS_FUNCTION # undef TARGET_LIBC_HAS_FUNCTION
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment