From: H.J. Lu Date: Mon, 30 Aug 2010 13:10:59 +0000 (+0000) Subject: Replace | with || in TARGET_HAS_SINCOS. X-Git-Tag: releases/gcc-4.6.0~4784 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a95054c150f3afdf014474dd9cb5e51f563d445a;p=thirdparty%2Fgcc.git Replace | with || in TARGET_HAS_SINCOS. 2010-08-30 H.J. Lu * config/linux.h (TARGET_HAS_SINCOS): Replace | with ||. From-SVN: r163640 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e4e5f4c29812..f0e5b25a6e6c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-08-30 H.J. Lu + + * config/linux.h (TARGET_HAS_SINCOS): Replace | with ||. + 2010-08-30 Richard Guenther PR tree-optimization/45449 diff --git a/gcc/config/linux.h b/gcc/config/linux.h index e283a9a33055..7c0ca95db42e 100644 --- a/gcc/config/linux.h +++ b/gcc/config/linux.h @@ -160,6 +160,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #define TARGET_C99_FUNCTIONS (OPTION_GLIBC) /* Whether we have sincos that follows the GNU extension. */ -#define TARGET_HAS_SINCOS (OPTION_GLIBC | OPTION_BIONIC) +#define TARGET_HAS_SINCOS (OPTION_GLIBC || OPTION_BIONIC) #define TARGET_POSIX_IO