public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
@ 2016-02-01 16:22 Jakub Jelinek
  2016-02-01 16:34 ` Jonathan Wakely
  0 siblings, 1 reply; 17+ messages in thread
From: Jakub Jelinek @ 2016-02-01 16:22 UTC (permalink / raw)
  To: Adhemerval Zanella; +Cc: libc-alpha, Jonathan Wakely

The recent changes disable not just ::is{inf,nan} prototypes that are
incompatible with C++11 and later and that are defined in <cmath> or
libstdc++ <math.h> wrapper, but also the ::is{inf,nan}{f,l} prototypes,
that are not incompatible with C++11.  This patch adds them back.

---
 math/bits/mathcalls.h | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h
index a48345d..1b82fcd 100644
--- a/math/bits/mathcalls.h
+++ b/math/bits/mathcalls.h
@@ -196,7 +196,9 @@ __MATHDECL_1 (int,__finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
 _Mdouble_END_NAMESPACE
 
 #ifdef __USE_MISC
-# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
+# if (!defined __cplusplus \
+      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
+      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
 /* Return 0 if VALUE is finite or NaN, +1 if it
    is +Infinity, -1 if it is -Infinity.  */
 __MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__));
@@ -232,7 +234,9 @@ __END_NAMESPACE_C99
 __MATHDECL_1 (int,__isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
 
 #if defined __USE_MISC || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
-# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
+# if (!defined __cplusplus \
+      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
+      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
 /* Return nonzero if VALUE is not a number.  */
 __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
 # endif
-- 
2.4.3

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-01 16:22 [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later Jakub Jelinek
@ 2016-02-01 16:34 ` Jonathan Wakely
  2016-02-03 16:56   ` Adhemerval Zanella
  0 siblings, 1 reply; 17+ messages in thread
From: Jonathan Wakely @ 2016-02-01 16:34 UTC (permalink / raw)
  To: Jakub Jelinek; +Cc: Adhemerval Zanella, libc-alpha

On 01/02/16 17:21 +0100, Jakub Jelinek wrote:
>The recent changes disable not just ::is{inf,nan} prototypes that are
>incompatible with C++11 and later and that are defined in <cmath> or
>libstdc++ <math.h> wrapper, but also the ::is{inf,nan}{f,l} prototypes,
>that are not incompatible with C++11.  This patch adds them back.

N.B. I also posted Jakub's patch at
https://sourceware.org/ml/libc-alpha/2016-02/msg00020.html with some
more context. The patch is the same though, so you can ignroe my
duplicate.


>---
> math/bits/mathcalls.h | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
>diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h
>index a48345d..1b82fcd 100644
>--- a/math/bits/mathcalls.h
>+++ b/math/bits/mathcalls.h
>@@ -196,7 +196,9 @@ __MATHDECL_1 (int,__finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
> _Mdouble_END_NAMESPACE
>
> #ifdef __USE_MISC
>-# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
>+# if (!defined __cplusplus \
>+      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
>+      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
> /* Return 0 if VALUE is finite or NaN, +1 if it
>    is +Infinity, -1 if it is -Infinity.  */
> __MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__));
>@@ -232,7 +234,9 @@ __END_NAMESPACE_C99
> __MATHDECL_1 (int,__isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
>
> #if defined __USE_MISC || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
>-# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
>+# if (!defined __cplusplus \
>+      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
>+      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
> /* Return nonzero if VALUE is not a number.  */
> __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
> # endif
>-- 
>2.4.3
>

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-01 16:34 ` Jonathan Wakely
@ 2016-02-03 16:56   ` Adhemerval Zanella
  2016-02-03 17:15     ` Jonathan Wakely
  2016-02-03 17:40     ` Mike Frysinger
  0 siblings, 2 replies; 17+ messages in thread
From: Adhemerval Zanella @ 2016-02-03 16:56 UTC (permalink / raw)
  To: Jonathan Wakely, Jakub Jelinek; +Cc: libc-alpha

I will quote the email referenced:

> C++11 code using isinf and isnan continues to compile after that
> change, because the C++11 standard library provides its own versions
> conforming to the C++11 requirements. However, the C++11 library
> doesn't provide isinff, isinfl etc. and so code using those
> (non-standard) functions will no longer compile if they are not
> declared by glibc.

This was not clear to me, what kind of build issue are you seeing now?
Using isinf{f,l} by including just <cmath> along with C++11? If it is the
case please open a bugzilla (or update the original) and please commit
the fix.

Also, do we have a testcase on libstdc++ to catch this?

On 01-02-2016 14:34, Jonathan Wakely wrote:
> On 01/02/16 17:21 +0100, Jakub Jelinek wrote:
>> The recent changes disable not just ::is{inf,nan} prototypes that are
>> incompatible with C++11 and later and that are defined in <cmath> or
>> libstdc++ <math.h> wrapper, but also the ::is{inf,nan}{f,l} prototypes,
>> that are not incompatible with C++11.  This patch adds them back.
> 
> N.B. I also posted Jakub's patch at
> https://sourceware.org/ml/libc-alpha/2016-02/msg00020.html with some
> more context. The patch is the same though, so you can ignroe my
> duplicate.
> 
> 
>> ---
>> math/bits/mathcalls.h | 8 ++++++--
>> 1 file changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h
>> index a48345d..1b82fcd 100644
>> --- a/math/bits/mathcalls.h
>> +++ b/math/bits/mathcalls.h
>> @@ -196,7 +196,9 @@ __MATHDECL_1 (int,__finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
>> _Mdouble_END_NAMESPACE
>>
>> #ifdef __USE_MISC
>> -# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
>> +# if (!defined __cplusplus \
>> +      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
>> +      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
>> /* Return 0 if VALUE is finite or NaN, +1 if it
>>    is +Infinity, -1 if it is -Infinity.  */
>> __MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__));
>> @@ -232,7 +234,9 @@ __END_NAMESPACE_C99
>> __MATHDECL_1 (int,__isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
>>
>> #if defined __USE_MISC || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
>> -# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
>> +# if (!defined __cplusplus \
>> +      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
>> +      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
>> /* Return nonzero if VALUE is not a number.  */
>> __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
>> # endif
>> -- 
>> 2.4.3
>>

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-03 16:56   ` Adhemerval Zanella
@ 2016-02-03 17:15     ` Jonathan Wakely
  2016-02-03 17:29       ` Jakub Jelinek
  2016-02-03 17:40     ` Mike Frysinger
  1 sibling, 1 reply; 17+ messages in thread
From: Jonathan Wakely @ 2016-02-03 17:15 UTC (permalink / raw)
  To: Adhemerval Zanella; +Cc: Jakub Jelinek, libc-alpha

On 03/02/16 14:55 -0200, Adhemerval Zanella wrote:
>I will quote the email referenced:
>
>> C++11 code using isinf and isnan continues to compile after that
>> change, because the C++11 standard library provides its own versions
>> conforming to the C++11 requirements. However, the C++11 library
>> doesn't provide isinff, isinfl etc. and so code using those
>> (non-standard) functions will no longer compile if they are not
>> declared by glibc.
>
>This was not clear to me, what kind of build issue are you seeing now?

There is no issue in libstdc++ this time. The problem comes when C++11
programs try to use the glibc is{inf,nan}{f,l} functions.

>Using isinf{f,l} by including just <cmath> along with C++11? If it is the
>case please open a bugzilla (or update the original) and please commit
>the fix.

Yes, including either <cmath> or <math.h> in C++11 code and trying to
use isinf{f,l}.

>Also, do we have a testcase on libstdc++ to catch this?

No, because nothing in libstdc++ uses or cares about isinf{f,l}, they
are not standard C++ functions. Just like we don't have tests for
other glibc functions such as getwd(3) that aren't part of ISO C++.

We could add a test, but it seems like it's the wrong place for it. It
would have to be limited to only run on *-*-*gnu* targets, since those
functions might not be available elsewhere. However, if glibc doesn't
have any tests that use a C++ compiler maybe libstdc++ is the easiest
place for it.


>On 01-02-2016 14:34, Jonathan Wakely wrote:
>> On 01/02/16 17:21 +0100, Jakub Jelinek wrote:
>>> The recent changes disable not just ::is{inf,nan} prototypes that are
>>> incompatible with C++11 and later and that are defined in <cmath> or
>>> libstdc++ <math.h> wrapper, but also the ::is{inf,nan}{f,l} prototypes,
>>> that are not incompatible with C++11.  This patch adds them back.
>>
>> N.B. I also posted Jakub's patch at
>> https://sourceware.org/ml/libc-alpha/2016-02/msg00020.html with some
>> more context. The patch is the same though, so you can ignroe my
>> duplicate.
>>
>>
>>> ---
>>> math/bits/mathcalls.h | 8 ++++++--
>>> 1 file changed, 6 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h
>>> index a48345d..1b82fcd 100644
>>> --- a/math/bits/mathcalls.h
>>> +++ b/math/bits/mathcalls.h
>>> @@ -196,7 +196,9 @@ __MATHDECL_1 (int,__finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
>>> _Mdouble_END_NAMESPACE
>>>
>>> #ifdef __USE_MISC
>>> -# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
>>> +# if (!defined __cplusplus \
>>> +      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
>>> +      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
>>> /* Return 0 if VALUE is finite or NaN, +1 if it
>>>    is +Infinity, -1 if it is -Infinity.  */
>>> __MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__));
>>> @@ -232,7 +234,9 @@ __END_NAMESPACE_C99
>>> __MATHDECL_1 (int,__isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
>>>
>>> #if defined __USE_MISC || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
>>> -# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
>>> +# if (!defined __cplusplus \
>>> +      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
>>> +      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
>>> /* Return nonzero if VALUE is not a number.  */
>>> __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
>>> # endif
>>> --
>>> 2.4.3
>>>

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-03 17:15     ` Jonathan Wakely
@ 2016-02-03 17:29       ` Jakub Jelinek
  0 siblings, 0 replies; 17+ messages in thread
From: Jakub Jelinek @ 2016-02-03 17:29 UTC (permalink / raw)
  To: Jonathan Wakely; +Cc: Adhemerval Zanella, libc-alpha

On Wed, Feb 03, 2016 at 05:15:36PM +0000, Jonathan Wakely wrote:
> >Using isinf{f,l} by including just <cmath> along with C++11? If it is the
> >case please open a bugzilla (or update the original) and please commit
> >the fix.
> 
> Yes, including either <cmath> or <math.h> in C++11 code and trying to
> use isinf{f,l}.
> 
> >Also, do we have a testcase on libstdc++ to catch this?
> 
> No, because nothing in libstdc++ uses or cares about isinf{f,l}, they
> are not standard C++ functions. Just like we don't have tests for
> other glibc functions such as getwd(3) that aren't part of ISO C++.
> 
> We could add a test, but it seems like it's the wrong place for it. It
> would have to be limited to only run on *-*-*gnu* targets, since those
> functions might not be available elsewhere. However, if glibc doesn't
> have any tests that use a C++ compiler maybe libstdc++ is the easiest
> place for it.

I believe glibc testsuite has some C++ tests, though not many.
You could just test with C++ that you can link (or run, whatever)
#define _GNU_SOURCE 1
#include <math.h>
#include <stdlib.h>

int
main ()
{
  if (isinff (1.0f)
      || !isinff (INFINITY)
      || isinfl (1.0L)
      || !isinfl (INFINITY)
      || isnanf (2.0f)
      || !isnanf (NAN)
      || isnanl (2.0L)
      || !isnanl (NAN))
    abort ();
}
or so.

	Jakub

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-03 16:56   ` Adhemerval Zanella
  2016-02-03 17:15     ` Jonathan Wakely
@ 2016-02-03 17:40     ` Mike Frysinger
  2016-02-03 18:04       ` Adhemerval Zanella
  1 sibling, 1 reply; 17+ messages in thread
From: Mike Frysinger @ 2016-02-03 17:40 UTC (permalink / raw)
  To: Adhemerval Zanella; +Cc: Jonathan Wakely, Jakub Jelinek, libc-alpha

[-- Attachment #1: Type: text/plain, Size: 849 bytes --]

On 03 Feb 2016 14:55, Adhemerval Zanella wrote:
> I will quote the email referenced:
> 
> > C++11 code using isinf and isnan continues to compile after that
> > change, because the C++11 standard library provides its own versions
> > conforming to the C++11 requirements. However, the C++11 library
> > doesn't provide isinff, isinfl etc. and so code using those
> > (non-standard) functions will no longer compile if they are not
> > declared by glibc.
> 
> This was not clear to me, what kind of build issue are you seeing now?
> Using isinf{f,l} by including just <cmath> along with C++11? If it is the
> case please open a bugzilla (or update the original) and please commit
> the fix.

if the change hasn't seen a release yet, then we can just re-use the
existing bug since it's really just a direct follow up to that ?
-mike

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-03 17:40     ` Mike Frysinger
@ 2016-02-03 18:04       ` Adhemerval Zanella
  2016-02-09 17:24         ` Jonathan Wakely
  0 siblings, 1 reply; 17+ messages in thread
From: Adhemerval Zanella @ 2016-02-03 18:04 UTC (permalink / raw)
  To: Jonathan Wakely, Jakub Jelinek, libc-alpha



On 03-02-2016 15:40, Mike Frysinger wrote:
> On 03 Feb 2016 14:55, Adhemerval Zanella wrote:
>> I will quote the email referenced:
>>
>>> C++11 code using isinf and isnan continues to compile after that
>>> change, because the C++11 standard library provides its own versions
>>> conforming to the C++11 requirements. However, the C++11 library
>>> doesn't provide isinff, isinfl etc. and so code using those
>>> (non-standard) functions will no longer compile if they are not
>>> declared by glibc.
>>
>> This was not clear to me, what kind of build issue are you seeing now?
>> Using isinf{f,l} by including just <cmath> along with C++11? If it is the
>> case please open a bugzilla (or update the original) and please commit
>> the fix.
> 
> if the change hasn't seen a release yet, then we can just re-use the
> existing bug since it's really just a direct follow up to that ?
> -mike
> 

I do not see why not.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-03 18:04       ` Adhemerval Zanella
@ 2016-02-09 17:24         ` Jonathan Wakely
  2016-02-09 17:38           ` Carlos O'Donell
  0 siblings, 1 reply; 17+ messages in thread
From: Jonathan Wakely @ 2016-02-09 17:24 UTC (permalink / raw)
  To: Adhemerval Zanella; +Cc: Jakub Jelinek, libc-alpha

On 03/02/16 16:04 -0200, Adhemerval Zanella wrote:
>
>
>On 03-02-2016 15:40, Mike Frysinger wrote:
>> On 03 Feb 2016 14:55, Adhemerval Zanella wrote:
>>> I will quote the email referenced:
>>>
>>>> C++11 code using isinf and isnan continues to compile after that
>>>> change, because the C++11 standard library provides its own versions
>>>> conforming to the C++11 requirements. However, the C++11 library
>>>> doesn't provide isinff, isinfl etc. and so code using those
>>>> (non-standard) functions will no longer compile if they are not
>>>> declared by glibc.
>>>
>>> This was not clear to me, what kind of build issue are you seeing now?
>>> Using isinf{f,l} by including just <cmath> along with C++11? If it is the
>>> case please open a bugzilla (or update the original) and please commit
>>> the fix.
>>
>> if the change hasn't seen a release yet, then we can just re-use the
>> existing bug since it's really just a direct follow up to that ?
>> -mike
>>
>
>I do not see why not.

Hi, what's the status of this then - do we need to add a testcase or
can it be committed for 2.23? (or wait for 2.24?)

FWIW it's already in the Fedora glibc 2.22 package.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-09 17:24         ` Jonathan Wakely
@ 2016-02-09 17:38           ` Carlos O'Donell
  2016-02-09 21:54             ` Carlos O'Donell
  0 siblings, 1 reply; 17+ messages in thread
From: Carlos O'Donell @ 2016-02-09 17:38 UTC (permalink / raw)
  To: Jonathan Wakely, Adhemerval Zanella; +Cc: Jakub Jelinek, libc-alpha

On 02/09/2016 12:23 PM, Jonathan Wakely wrote:
> On 03/02/16 16:04 -0200, Adhemerval Zanella wrote:
>>
>>
>> On 03-02-2016 15:40, Mike Frysinger wrote:
>>> On 03 Feb 2016 14:55, Adhemerval Zanella wrote:
>>>> I will quote the email referenced:
>>>>
>>>>> C++11 code using isinf and isnan continues to compile after that
>>>>> change, because the C++11 standard library provides its own versions
>>>>> conforming to the C++11 requirements. However, the C++11 library
>>>>> doesn't provide isinff, isinfl etc. and so code using those
>>>>> (non-standard) functions will no longer compile if they are not
>>>>> declared by glibc.
>>>>
>>>> This was not clear to me, what kind of build issue are you seeing now?
>>>> Using isinf{f,l} by including just <cmath> along with C++11? If it is the
>>>> case please open a bugzilla (or update the original) and please commit
>>>> the fix.
>>>
>>> if the change hasn't seen a release yet, then we can just re-use the
>>> existing bug since it's really just a direct follow up to that ?
>>> -mike
>>>
>>
>> I do not see why not.
> 
> Hi, what's the status of this then - do we need to add a testcase or
> can it be committed for 2.23? (or wait for 2.24?)

Yes, we want always want a test case. It's perfectly fine to use C++
in  tests in glibc, and if the C++ compiler isn't present those tests
should become UNSUPPORTED tests, which is OK (when bootstrapping).

In summary:
- Add C++ test.
- Use BZ #19439 and provide ChangeLog.
- Post v2

I'll review it and commit, or someone else will.

Cheers,
Carlos.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-09 17:38           ` Carlos O'Donell
@ 2016-02-09 21:54             ` Carlos O'Donell
  2016-02-10 16:30               ` Adhemerval Zanella
  2016-02-23 15:32               ` Andreas Schwab
  0 siblings, 2 replies; 17+ messages in thread
From: Carlos O'Donell @ 2016-02-09 21:54 UTC (permalink / raw)
  To: Jonathan Wakely, Adhemerval Zanella; +Cc: Jakub Jelinek, libc-alpha

On 02/09/2016 12:38 PM, Carlos O'Donell wrote:
> On 02/09/2016 12:23 PM, Jonathan Wakely wrote:
>> On 03/02/16 16:04 -0200, Adhemerval Zanella wrote:
>>>
>>>
>>> On 03-02-2016 15:40, Mike Frysinger wrote:
>>>> On 03 Feb 2016 14:55, Adhemerval Zanella wrote:
>>>>> I will quote the email referenced:
>>>>>
>>>>>> C++11 code using isinf and isnan continues to compile after that
>>>>>> change, because the C++11 standard library provides its own versions
>>>>>> conforming to the C++11 requirements. However, the C++11 library
>>>>>> doesn't provide isinff, isinfl etc. and so code using those
>>>>>> (non-standard) functions will no longer compile if they are not
>>>>>> declared by glibc.
>>>>>
>>>>> This was not clear to me, what kind of build issue are you seeing now?
>>>>> Using isinf{f,l} by including just <cmath> along with C++11? If it is the
>>>>> case please open a bugzilla (or update the original) and please commit
>>>>> the fix.
>>>>
>>>> if the change hasn't seen a release yet, then we can just re-use the
>>>> existing bug since it's really just a direct follow up to that ?
>>>> -mike
>>>>
>>>
>>> I do not see why not.
>>
>> Hi, what's the status of this then - do we need to add a testcase or
>> can it be committed for 2.23? (or wait for 2.24?)
> 
> Yes, we want always want a test case. It's perfectly fine to use C++
> in  tests in glibc, and if the C++ compiler isn't present those tests
> should become UNSUPPORTED tests, which is OK (when bootstrapping).
> 
> In summary:
> - Add C++ test.
> - Use BZ #19439 and provide ChangeLog.
> - Post v2

v2
- Added test case which fails to compile before patch. I saw no easier
  way to test a header inclusion issue like this than to fail the entire
  testsuite when building that test. Adding a conform test just for this
  is overkill and outside the scope of conformtest.
- Regression tested on x86_64 with no regressions.

I'll commit this ASAP if nobody objects.

Adhemerval?

2016-02-09  Jakub Jelinek  <jakub@redhat.com>
	    Jonathan Wakely  <jwakely@redhat.com>
	    Carlos O'Donell  <carlos@redhat.com>

	[BZ 19439]
	* math/Makefile (tests): Add test-math-isinff.
	(CFLAGS-test-math-isinff.cc): Use -std=gnu++11.
	* math/bits/mathcalls.h [__USE_MISC]: Use
	'|| __MATH_DECLARING_DOUBLE == 0' to relax definition of
	functions not in C++11 and which don't conflict e.g. isinff,
	isinfl etc.
	* math/test-math-isinff.cc: New file.

diff --git a/math/Makefile b/math/Makefile
index 222ee6b..7d573a0 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -114,6 +114,7 @@ tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \
 	test-nearbyint-except-2 test-signgam-uchar test-signgam-uchar-init \
 	test-signgam-uint test-signgam-uint-init test-signgam-ullong \
 	test-signgam-ullong-init test-nan-overflow test-nan-payload \
+	test-math-isinff \
 	$(tests-static)
 tests-static = test-fpucw-static test-fpucw-ieee-static \
 	       test-signgam-uchar-static test-signgam-uchar-init-static \
@@ -220,6 +221,8 @@ CFLAGS-test-signgam-ullong-init.c = -std=c99
 CFLAGS-test-signgam-ullong-static.c = -std=c99
 CFLAGS-test-signgam-ullong-init-static.c = -std=c99
 
+CFLAGS-test-math-isinff.cc = -std=gnu++11
+
 # The -lieee module sets the _LIB_VERSION_ switch to IEEE mode
 # for error handling in the -lm functions.
 install-lib += libieee.a
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h
index a48345d..9a7b3f0 100644
--- a/math/bits/mathcalls.h
+++ b/math/bits/mathcalls.h
@@ -196,7 +196,9 @@ __MATHDECL_1 (int,__finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
 _Mdouble_END_NAMESPACE
 
 #ifdef __USE_MISC
-# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
+# if (!defined __cplusplus \
+      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
+      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
 /* Return 0 if VALUE is finite or NaN, +1 if it
    is +Infinity, -1 if it is -Infinity.  */
 __MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__));
@@ -232,7 +234,9 @@ __END_NAMESPACE_C99
 __MATHDECL_1 (int,__isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
 
 #if defined __USE_MISC || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
-# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
+# if (!defined __cplusplus \
+      || __cplusplus < 201103L /* isnan conflicts with C++11.  */ \
+      || __MATH_DECLARING_DOUBLE == 0) /* isnanf or isnanl don't.  */
 /* Return nonzero if VALUE is not a number.  */
 __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
 # endif
diff --git a/math/test-math-isinff.cc b/math/test-math-isinff.cc
new file mode 100644
index 0000000..195d753
--- /dev/null
+++ b/math/test-math-isinff.cc
@@ -0,0 +1,48 @@
+/* Test for bug 19439.
+   Copyright (C) 2016 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#define _GNU_SOURCE 1
+#include <math.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+static int
+do_test (void)
+{
+  /* Verify that isinff, isinfl, isnanf, and isnanlf are defined
+     in the header under C++11 and can be called.  Without the
+     header fix this test will not compile.  */
+  if (isinff (1.0f)
+      || !isinff (INFINITY)
+      || isinfl (1.0L)
+      || !isinfl (INFINITY)
+      || isnanf (2.0f)
+      || !isnanf (NAN)
+      || isnanl (2.0L)
+      || !isnanl (NAN))
+    {
+      printf ("FAIL: Failed to call is* functions.\n");
+      exit (1);
+    }
+  printf ("PASS: Able to call isinff, isinfl, isnanf, and isnanl.\n");
+  exit (0);
+}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"
---

Cheers,
Carlos.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-09 21:54             ` Carlos O'Donell
@ 2016-02-10 16:30               ` Adhemerval Zanella
  2016-02-15  1:20                 ` Carlos O'Donell
  2016-02-23 15:32               ` Andreas Schwab
  1 sibling, 1 reply; 17+ messages in thread
From: Adhemerval Zanella @ 2016-02-10 16:30 UTC (permalink / raw)
  To: Carlos O'Donell, Jonathan Wakely; +Cc: Jakub Jelinek, libc-alpha



On 09-02-2016 19:54, Carlos O'Donell wrote:
> On 02/09/2016 12:38 PM, Carlos O'Donell wrote:
>> On 02/09/2016 12:23 PM, Jonathan Wakely wrote:
>>> On 03/02/16 16:04 -0200, Adhemerval Zanella wrote:
>>>>
>>>>
>>>> On 03-02-2016 15:40, Mike Frysinger wrote:
>>>>> On 03 Feb 2016 14:55, Adhemerval Zanella wrote:
>>>>>> I will quote the email referenced:
>>>>>>
>>>>>>> C++11 code using isinf and isnan continues to compile after that
>>>>>>> change, because the C++11 standard library provides its own versions
>>>>>>> conforming to the C++11 requirements. However, the C++11 library
>>>>>>> doesn't provide isinff, isinfl etc. and so code using those
>>>>>>> (non-standard) functions will no longer compile if they are not
>>>>>>> declared by glibc.
>>>>>>
>>>>>> This was not clear to me, what kind of build issue are you seeing now?
>>>>>> Using isinf{f,l} by including just <cmath> along with C++11? If it is the
>>>>>> case please open a bugzilla (or update the original) and please commit
>>>>>> the fix.
>>>>>
>>>>> if the change hasn't seen a release yet, then we can just re-use the
>>>>> existing bug since it's really just a direct follow up to that ?
>>>>> -mike
>>>>>
>>>>
>>>> I do not see why not.
>>>
>>> Hi, what's the status of this then - do we need to add a testcase or
>>> can it be committed for 2.23? (or wait for 2.24?)
>>
>> Yes, we want always want a test case. It's perfectly fine to use C++
>> in  tests in glibc, and if the C++ compiler isn't present those tests
>> should become UNSUPPORTED tests, which is OK (when bootstrapping).
>>
>> In summary:
>> - Add C++ test.
>> - Use BZ #19439 and provide ChangeLog.
>> - Post v2
> 
> v2
> - Added test case which fails to compile before patch. I saw no easier
>   way to test a header inclusion issue like this than to fail the entire
>   testsuite when building that test. Adding a conform test just for this
>   is overkill and outside the scope of conformtest.
> - Regression tested on x86_64 with no regressions.
> 
> I'll commit this ASAP if nobody objects.
> 
> Adhemerval?
> 

Sorry for late response.  This is ok for 2.23, thanks!

> 2016-02-09  Jakub Jelinek  <jakub@redhat.com>
> 	    Jonathan Wakely  <jwakely@redhat.com>
> 	    Carlos O'Donell  <carlos@redhat.com>
> 
> 	[BZ 19439]
> 	* math/Makefile (tests): Add test-math-isinff.
> 	(CFLAGS-test-math-isinff.cc): Use -std=gnu++11.
> 	* math/bits/mathcalls.h [__USE_MISC]: Use
> 	'|| __MATH_DECLARING_DOUBLE == 0' to relax definition of
> 	functions not in C++11 and which don't conflict e.g. isinff,
> 	isinfl etc.
> 	* math/test-math-isinff.cc: New file.
> 
> diff --git a/math/Makefile b/math/Makefile
> index 222ee6b..7d573a0 100644
> --- a/math/Makefile
> +++ b/math/Makefile
> @@ -114,6 +114,7 @@ tests = test-matherr test-fenv atest-exp atest-sincos atest-exp2 basic-test \
>  	test-nearbyint-except-2 test-signgam-uchar test-signgam-uchar-init \
>  	test-signgam-uint test-signgam-uint-init test-signgam-ullong \
>  	test-signgam-ullong-init test-nan-overflow test-nan-payload \
> +	test-math-isinff \
>  	$(tests-static)
>  tests-static = test-fpucw-static test-fpucw-ieee-static \
>  	       test-signgam-uchar-static test-signgam-uchar-init-static \
> @@ -220,6 +221,8 @@ CFLAGS-test-signgam-ullong-init.c = -std=c99
>  CFLAGS-test-signgam-ullong-static.c = -std=c99
>  CFLAGS-test-signgam-ullong-init-static.c = -std=c99
>  
> +CFLAGS-test-math-isinff.cc = -std=gnu++11
> +
>  # The -lieee module sets the _LIB_VERSION_ switch to IEEE mode
>  # for error handling in the -lm functions.
>  install-lib += libieee.a
> diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h
> index a48345d..9a7b3f0 100644
> --- a/math/bits/mathcalls.h
> +++ b/math/bits/mathcalls.h
> @@ -196,7 +196,9 @@ __MATHDECL_1 (int,__finite,, (_Mdouble_ __value)) __attribute__ ((__const__));
>  _Mdouble_END_NAMESPACE
>  
>  #ifdef __USE_MISC
> -# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
> +# if (!defined __cplusplus \
> +      || __cplusplus < 201103L /* isinf conflicts with C++11.  */ \
> +      || __MATH_DECLARING_DOUBLE == 0) /* isinff or isinfl don't.  */
>  /* Return 0 if VALUE is finite or NaN, +1 if it
>     is +Infinity, -1 if it is -Infinity.  */
>  __MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__));
> @@ -232,7 +234,9 @@ __END_NAMESPACE_C99
>  __MATHDECL_1 (int,__isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
>  
>  #if defined __USE_MISC || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
> -# if !defined __cplusplus || __cplusplus < 201103L /* Conflicts with C++11.  */
> +# if (!defined __cplusplus \
> +      || __cplusplus < 201103L /* isnan conflicts with C++11.  */ \
> +      || __MATH_DECLARING_DOUBLE == 0) /* isnanf or isnanl don't.  */
>  /* Return nonzero if VALUE is not a number.  */
>  __MATHDECL_1 (int,isnan,, (_Mdouble_ __value)) __attribute__ ((__const__));
>  # endif
> diff --git a/math/test-math-isinff.cc b/math/test-math-isinff.cc
> new file mode 100644
> index 0000000..195d753
> --- /dev/null
> +++ b/math/test-math-isinff.cc
> @@ -0,0 +1,48 @@
> +/* Test for bug 19439.
> +   Copyright (C) 2016 Free Software Foundation, Inc.
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library; if not, see
> +   <http://www.gnu.org/licenses/>.  */
> +
> +#define _GNU_SOURCE 1
> +#include <math.h>
> +#include <stdio.h>
> +#include <stdlib.h>
> +
> +static int
> +do_test (void)
> +{
> +  /* Verify that isinff, isinfl, isnanf, and isnanlf are defined
> +     in the header under C++11 and can be called.  Without the
> +     header fix this test will not compile.  */
> +  if (isinff (1.0f)
> +      || !isinff (INFINITY)
> +      || isinfl (1.0L)
> +      || !isinfl (INFINITY)
> +      || isnanf (2.0f)
> +      || !isnanf (NAN)
> +      || isnanl (2.0L)
> +      || !isnanl (NAN))
> +    {
> +      printf ("FAIL: Failed to call is* functions.\n");
> +      exit (1);
> +    }
> +  printf ("PASS: Able to call isinff, isinfl, isnanf, and isnanl.\n");
> +  exit (0);
> +}
> +
> +#define TEST_FUNCTION do_test ()
> +#include "../test-skeleton.c"
> ---
> 
> Cheers,
> Carlos.
> 
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-10 16:30               ` Adhemerval Zanella
@ 2016-02-15  1:20                 ` Carlos O'Donell
  0 siblings, 0 replies; 17+ messages in thread
From: Carlos O'Donell @ 2016-02-15  1:20 UTC (permalink / raw)
  To: Adhemerval Zanella, Jonathan Wakely; +Cc: Jakub Jelinek, libc-alpha

On 02/10/2016 11:30 AM, Adhemerval Zanella wrote:
> 
> 
> On 09-02-2016 19:54, Carlos O'Donell wrote:
>> On 02/09/2016 12:38 PM, Carlos O'Donell wrote:
>>> On 02/09/2016 12:23 PM, Jonathan Wakely wrote:
>>>> On 03/02/16 16:04 -0200, Adhemerval Zanella wrote:
>>>>>
>>>>>
>>>>> On 03-02-2016 15:40, Mike Frysinger wrote:
>>>>>> On 03 Feb 2016 14:55, Adhemerval Zanella wrote:
>>>>>>> I will quote the email referenced:
>>>>>>>
>>>>>>>> C++11 code using isinf and isnan continues to compile after that
>>>>>>>> change, because the C++11 standard library provides its own versions
>>>>>>>> conforming to the C++11 requirements. However, the C++11 library
>>>>>>>> doesn't provide isinff, isinfl etc. and so code using those
>>>>>>>> (non-standard) functions will no longer compile if they are not
>>>>>>>> declared by glibc.
>>>>>>>
>>>>>>> This was not clear to me, what kind of build issue are you seeing now?
>>>>>>> Using isinf{f,l} by including just <cmath> along with C++11? If it is the
>>>>>>> case please open a bugzilla (or update the original) and please commit
>>>>>>> the fix.
>>>>>>
>>>>>> if the change hasn't seen a release yet, then we can just re-use the
>>>>>> existing bug since it's really just a direct follow up to that ?
>>>>>> -mike
>>>>>>
>>>>>
>>>>> I do not see why not.
>>>>
>>>> Hi, what's the status of this then - do we need to add a testcase or
>>>> can it be committed for 2.23? (or wait for 2.24?)
>>>
>>> Yes, we want always want a test case. It's perfectly fine to use C++
>>> in  tests in glibc, and if the C++ compiler isn't present those tests
>>> should become UNSUPPORTED tests, which is OK (when bootstrapping).
>>>
>>> In summary:
>>> - Add C++ test.
>>> - Use BZ #19439 and provide ChangeLog.
>>> - Post v2
>>
>> v2
>> - Added test case which fails to compile before patch. I saw no easier
>>   way to test a header inclusion issue like this than to fail the entire
>>   testsuite when building that test. Adding a conform test just for this
>>   is overkill and outside the scope of conformtest.
>> - Regression tested on x86_64 with no regressions.
>>
>> I'll commit this ASAP if nobody objects.
>>
>> Adhemerval?
>>
> 
> Sorry for late response.  This is ok for 2.23, thanks!

Committed.

commit 3c47c83a9730c20e602694505b9278c25637b0d0
Author: Carlos O'Donell <carlos@systemhalted.org>
Date:   Sun Feb 14 19:27:06 2016 -0500

    Ensure isinff, isinfl, isnanf, and isnanl are defined (Bug 19439)
    
    In ICO C++11 mode ensure that isinff, isinfl, isnanf, and isnanl
    are defined.  These functions were accidentally removed from the
    header as part of commit d9b965fa56350d6eea9f7f438a0714c7ffbb183f,
    but being GNU extensions, they should have been left in place.

Cheers,
Carlos.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-09 21:54             ` Carlos O'Donell
  2016-02-10 16:30               ` Adhemerval Zanella
@ 2016-02-23 15:32               ` Andreas Schwab
  2016-02-23 15:41                 ` Jakub Jelinek
  2016-02-23 17:41                 ` Carlos O'Donell
  1 sibling, 2 replies; 17+ messages in thread
From: Andreas Schwab @ 2016-02-23 15:32 UTC (permalink / raw)
  To: Carlos O'Donell
  Cc: Jonathan Wakely, Adhemerval Zanella, Jakub Jelinek, libc-alpha

"Carlos O'Donell" <carlos@redhat.com> writes:

> diff --git a/math/test-math-isinff.cc b/math/test-math-isinff.cc
> new file mode 100644
> index 0000000..195d753
> --- /dev/null
> +++ b/math/test-math-isinff.cc
> @@ -0,0 +1,48 @@
> +/* Test for bug 19439.
> +   Copyright (C) 2016 Free Software Foundation, Inc.
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library; if not, see
> +   <http://www.gnu.org/licenses/>.  */
> +
> +#define _GNU_SOURCE 1
> +#include <math.h>
> +#include <stdio.h>
> +#include <stdlib.h>
> +
> +static int
> +do_test (void)
> +{
> +  /* Verify that isinff, isinfl, isnanf, and isnanlf are defined
> +     in the header under C++11 and can be called.  Without the
> +     header fix this test will not compile.  */
> +  if (isinff (1.0f)
> +      || !isinff (INFINITY)
> +      || isinfl (1.0L)
> +      || !isinfl (INFINITY)
> +      || isnanf (2.0f)
> +      || !isnanf (NAN)
> +      || isnanl (2.0L)
> +      || !isnanl (NAN))

That doesn't compile on platforms where long == long double, since they
do not declare any *l functions (arm, hppa, mips/o32).

test-math-isinff.cc: In function 'int do_test()':
test-math-isinff.cc:33:22: error: 'isinfl' was not declared in this scope
       || isinfl (1.0L)
                      ^
test-math-isinff.cc:37:22: error: 'isnanl' was not declared in this scope
       || isnanl (2.0L)
                      ^

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-23 15:32               ` Andreas Schwab
@ 2016-02-23 15:41                 ` Jakub Jelinek
  2016-02-23 17:41                 ` Carlos O'Donell
  1 sibling, 0 replies; 17+ messages in thread
From: Jakub Jelinek @ 2016-02-23 15:41 UTC (permalink / raw)
  To: Andreas Schwab
  Cc: Carlos O'Donell, Jonathan Wakely, Adhemerval Zanella, libc-alpha

On Tue, Feb 23, 2016 at 04:23:42PM +0100, Andreas Schwab wrote:
> > +static int
> > +do_test (void)
> > +{
> > +  /* Verify that isinff, isinfl, isnanf, and isnanlf are defined
> > +     in the header under C++11 and can be called.  Without the
> > +     header fix this test will not compile.  */
> > +  if (isinff (1.0f)
> > +      || !isinff (INFINITY)
> > +      || isinfl (1.0L)
> > +      || !isinfl (INFINITY)
> > +      || isnanf (2.0f)
> > +      || !isnanf (NAN)
> > +      || isnanl (2.0L)
> > +      || !isnanl (NAN))
> 
> That doesn't compile on platforms where long == long double, since they
> do not declare any *l functions (arm, hppa, mips/o32).
> 
> test-math-isinff.cc: In function 'int do_test()':
> test-math-isinff.cc:33:22: error: 'isinfl' was not declared in this scope
>        || isinfl (1.0L)
>                       ^
> test-math-isinff.cc:37:22: error: 'isnanl' was not declared in this scope
>        || isnanl (2.0L)
>                       ^

Thus the *l stuff needs to be guarded with
#ifndef __NO_LONG_DOUBLE_MATH

	Jakub

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-23 15:32               ` Andreas Schwab
  2016-02-23 15:41                 ` Jakub Jelinek
@ 2016-02-23 17:41                 ` Carlos O'Donell
  2016-02-24  8:59                   ` Andreas Schwab
  1 sibling, 1 reply; 17+ messages in thread
From: Carlos O'Donell @ 2016-02-23 17:41 UTC (permalink / raw)
  To: Andreas Schwab
  Cc: Jonathan Wakely, Adhemerval Zanella, Jakub Jelinek, libc-alpha

On 02/23/2016 10:23 AM, Andreas Schwab wrote:
> That doesn't compile on platforms where long == long double, since they
> do not declare any *l functions (arm, hppa, mips/o32).
> 
> test-math-isinff.cc: In function 'int do_test()':
> test-math-isinff.cc:33:22: error: 'isinfl' was not declared in this scope
>        || isinfl (1.0L)
>                       ^
> test-math-isinff.cc:37:22: error: 'isnanl' was not declared in this scope
>        || isnanl (2.0L)
>                       ^

I'll fix this shortly and backport to 2.23 branch.

Any suggestions for how you want to fix it are welcome.

Cheers,
Carlos.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-23 17:41                 ` Carlos O'Donell
@ 2016-02-24  8:59                   ` Andreas Schwab
  2016-02-24  9:39                     ` Carlos O'Donell
  0 siblings, 1 reply; 17+ messages in thread
From: Andreas Schwab @ 2016-02-24  8:59 UTC (permalink / raw)
  To: Carlos O'Donell
  Cc: Jonathan Wakely, Adhemerval Zanella, Jakub Jelinek, libc-alpha

This has been tested on armv7.

Andreas.

	* math/test-math-isinff.cc (do_test): Only call isinfl and isnanl
	if !NO_LONG_DOUBLE.
---
 math/test-math-isinff.cc | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/math/test-math-isinff.cc b/math/test-math-isinff.cc
index 195d753..ecff1dc 100644
--- a/math/test-math-isinff.cc
+++ b/math/test-math-isinff.cc
@@ -30,12 +30,17 @@ do_test (void)
      header fix this test will not compile.  */
   if (isinff (1.0f)
       || !isinff (INFINITY)
+#ifndef NO_LONG_DOUBLE
       || isinfl (1.0L)
       || !isinfl (INFINITY)
+#endif
       || isnanf (2.0f)
       || !isnanf (NAN)
+#ifndef NO_LONG_DOUBLE
       || isnanl (2.0L)
-      || !isnanl (NAN))
+      || !isnanl (NAN)
+#endif
+      )
     {
       printf ("FAIL: Failed to call is* functions.\n");
       exit (1);
-- 
2.7.2

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later
  2016-02-24  8:59                   ` Andreas Schwab
@ 2016-02-24  9:39                     ` Carlos O'Donell
  0 siblings, 0 replies; 17+ messages in thread
From: Carlos O'Donell @ 2016-02-24  9:39 UTC (permalink / raw)
  To: Andreas Schwab
  Cc: Jonathan Wakely, Adhemerval Zanella, Jakub Jelinek, libc-alpha

On 02/24/2016 03:22 AM, Andreas Schwab wrote:
> This has been tested on armv7.
> 
> Andreas.
> 
> 	* math/test-math-isinff.cc (do_test): Only call isinfl and isnanl
> 	if !NO_LONG_DOUBLE.

LGTM. Thanks for fixing it!

c.

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2016-02-24  8:59 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-01 16:22 [PATCH] Preserve ::is{inf,nan}{f,l} prototypes even for C++11 and later Jakub Jelinek
2016-02-01 16:34 ` Jonathan Wakely
2016-02-03 16:56   ` Adhemerval Zanella
2016-02-03 17:15     ` Jonathan Wakely
2016-02-03 17:29       ` Jakub Jelinek
2016-02-03 17:40     ` Mike Frysinger
2016-02-03 18:04       ` Adhemerval Zanella
2016-02-09 17:24         ` Jonathan Wakely
2016-02-09 17:38           ` Carlos O'Donell
2016-02-09 21:54             ` Carlos O'Donell
2016-02-10 16:30               ` Adhemerval Zanella
2016-02-15  1:20                 ` Carlos O'Donell
2016-02-23 15:32               ` Andreas Schwab
2016-02-23 15:41                 ` Jakub Jelinek
2016-02-23 17:41                 ` Carlos O'Donell
2016-02-24  8:59                   ` Andreas Schwab
2016-02-24  9:39                     ` Carlos O'Donell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).