diff mbox

Fix typo that broke ia64-hpux

Message ID CACysShhr2dy8TYLTEru9y_ECsRZiyP5_T6Tprsf2L=vSwhRZDA@mail.gmail.com
State New
Headers show

Commit Message

Alexander Ivchenko Nov. 26, 2013, 12:59 p.m. UTC
Hi,

The patch addresses the issue Jan-Benedict's buildrobot found:

http://gcc.gnu.org/ml/gcc/2013-11/msg00507.html


 #define TARGET_INIT_LIBFUNCS ia64_hpux_init_libfuncs


is it OK?


thanks,
Alexander

Comments

Jeff Law Nov. 26, 2013, 6:34 p.m. UTC | #1
On 11/26/13 05:59, Alexander Ivchenko wrote:
> Hi,
>
> The patch addresses the issue Jan-Benedict's buildrobot found:
>
> http://gcc.gnu.org/ml/gcc/2013-11/msg00507.html
>
>
> diff --git a/gcc/ChangeLog b/gcc/ChangeLog
> index 7704433..da9a3e2 100644
> --- a/gcc/ChangeLog
> +++ b/gcc/ChangeLog
> @@ -1,3 +1,7 @@
> +2013-11-26  Alexander Ivchenko  <alexander.ivchenko@intel.com>
> +
> +       * config/ia64/hpux.h (TARGET_LIBC_HAS_FUNCTION): Fix typo.
> +
>   2013-11-26  James Greenhalgh  <james.greenhalgh@arm.com>
>
>          * config/aarch64/aarch64-builtins.c
> diff --git a/gcc/config/ia64/hpux.h b/gcc/config/ia64/hpux.h
> index 517132c..4fc80ee 100644
> --- a/gcc/config/ia64/hpux.h
> +++ b/gcc/config/ia64/hpux.h
> @@ -182,7 +182,7 @@ do {
>                   \
>   /* ia64 HPUX has the float and long double forms of math functions.
>      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_c99_libc_has_function
> +#define TARGET_LIBC_HAS_FUNCTION default_libc_has_function
>
>   #undef TARGET_INIT_LIBFUNCS
>   #define TARGET_INIT_LIBFUNCS ia64_hpux_init_libfuncs
>
>
> is it OK?
Yes, this is fine.  Please install.

jeff
diff mbox

Patch

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7704433..da9a3e2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@ 
+2013-11-26  Alexander Ivchenko  <alexander.ivchenko@intel.com>
+
+       * config/ia64/hpux.h (TARGET_LIBC_HAS_FUNCTION): Fix typo.
+
 2013-11-26  James Greenhalgh  <james.greenhalgh@arm.com>

        * config/aarch64/aarch64-builtins.c
diff --git a/gcc/config/ia64/hpux.h b/gcc/config/ia64/hpux.h
index 517132c..4fc80ee 100644
--- a/gcc/config/ia64/hpux.h
+++ b/gcc/config/ia64/hpux.h
@@ -182,7 +182,7 @@  do {
                 \
 /* ia64 HPUX has the float and long double forms of math functions.
    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_c99_libc_has_function
+#define TARGET_LIBC_HAS_FUNCTION default_libc_has_function

 #undef TARGET_INIT_LIBFUNCS