diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2013-08-22 15:28:15 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2013-08-22 15:28:15 +0000 |
commit | bcba7ecc113b82f1b80457df2b4edf35847fcf56 (patch) | |
tree | 6adc5be20fce6ef7cfa799f25d20cdeeed0cacfd | |
parent | 4c495b0d9944eca0fbfb1abf3ad306e9b11ebde0 (diff) | |
download | gcc-bcba7ecc113b82f1b80457df2b4edf35847fcf56.zip gcc-bcba7ecc113b82f1b80457df2b4edf35847fcf56.tar.gz gcc-bcba7ecc113b82f1b80457df2b4edf35847fcf56.tar.bz2 |
linux.h (TARGET_LIBC_HAS_FUNCTION): Define as gnu_libc_has_function.
2013-08-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/linux.h (TARGET_LIBC_HAS_FUNCTION): Define as
gnu_libc_has_function.
* config/s390/tpf.h: Likewise.
From-SVN: r201922
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/s390/linux.h | 3 | ||||
-rw-r--r-- | gcc/config/s390/tpf.h | 6 |
3 files changed, 12 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6cfd96e..4ebbc85 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-08-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + + * config/s390/linux.h (TARGET_LIBC_HAS_FUNCTION): Define as + gnu_libc_has_function. + * config/s390/tpf.h: Likewise. + 2013-08-22 Jan Hubicka <jh@susue.cz> * timevar.c (validate_phases): Add cast. diff --git a/gcc/config/s390/linux.h b/gcc/config/s390/linux.h index 3b4966a..699b5df 100644 --- a/gcc/config/s390/linux.h +++ b/gcc/config/s390/linux.h @@ -87,4 +87,7 @@ along with GCC; see the file COPYING3. If not see /* Define if long doubles should be mangled as 'g'. */ #define TARGET_ALTERNATE_LONG_DOUBLE_MANGLING +#undef TARGET_LIBC_HAS_FUNCTION +#define TARGET_LIBC_HAS_FUNCTION gnu_libc_has_function + #endif diff --git a/gcc/config/s390/tpf.h b/gcc/config/s390/tpf.h index 8eb1947..a1af01b 100644 --- a/gcc/config/s390/tpf.h +++ b/gcc/config/s390/tpf.h @@ -111,8 +111,8 @@ along with GCC; see the file COPYING3. If not see /* IBM copies these libraries over with these names. */ #define MATH_LIBRARY "CLBM" #define LIBSTDCXX "CPP2" -#endif /* ! _TPF_H */ -/* We redefine this hook so the version from elfos.h header won't be used. */ #undef TARGET_LIBC_HAS_FUNCTION -#define TARGET_LIBC_HAS_FUNCTION default_libc_has_function +#define TARGET_LIBC_HAS_FUNCTION gnu_libc_has_function + +#endif /* ! _TPF_H */ |