public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2024-02-07 14:12 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2024-02-07 14:12 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3ad4af43c0225bed9ed45a8e328bae1dd1dd7333
commit 3ad4af43c0225bed9ed45a8e328bae1dd1dd7333
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 1e300c4223..e1d266f4b3 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1296,7 +1296,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2024-04-17 20:12 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2024-04-17 20:12 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a4112fc8babf51c86841f0420367dab31f5ac7db
commit a4112fc8babf51c86841f0420367dab31f5ac7db
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 1e300c4223..e1d266f4b3 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1296,7 +1296,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2024-04-02 15:58 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2024-04-02 15:58 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=96234bf73587cae957744e052231f9bd7e0c2b95
commit 96234bf73587cae957744e052231f9bd7e0c2b95
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 1e300c4223..e1d266f4b3 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1296,7 +1296,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2024-02-09 17:37 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2024-02-09 17:37 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=867d2f27a78e9bc9536107f03a4267756706e444
commit 867d2f27a78e9bc9536107f03a4267756706e444
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 1e300c4223..e1d266f4b3 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1296,7 +1296,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2024-01-29 18:02 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2024-01-29 18:02 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=74e984fd71e30a73a5f58086a445a72f00977843
commit 74e984fd71e30a73a5f58086a445a72f00977843
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index a1631a8c24..a2fa4eb36a 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1296,7 +1296,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2023-12-21 18:59 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2023-12-21 18:59 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=2103bb80ccc2332b2d6b8e9cb28a0b74bd9b8d43
commit 2103bb80ccc2332b2d6b8e9cb28a0b74bd9b8d43
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index f13639943e..f30a54937a 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1296,7 +1296,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2023-09-28 17:57 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2023-09-28 17:57 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=06e16870344d01b7052ea7cc9f5668d94de945fd
commit 06e16870344d01b7052ea7cc9f5668d94de945fd
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index f13639943e..f30a54937a 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1296,7 +1296,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2023-08-30 12:41 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2023-08-30 12:41 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9d4b4462068ea23c393ff44ec84cda89e5fd7841
commit 9d4b4462068ea23c393ff44ec84cda89e5fd7841
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index f13639943e..f30a54937a 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1296,7 +1296,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2023-02-09 19:53 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2023-02-09 19:53 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1d8bf2430ed01495573dfe13e97168f4f7013a11
commit 1d8bf2430ed01495573dfe13e97168f4f7013a11
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 6dc0604132..db5763ec00 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-10-28 17:46 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-10-28 17:46 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=56b00ca2b0ac87a3a15d3206ce3ce457371dc7e1
commit 56b00ca2b0ac87a3a15d3206ce3ce457371dc7e1
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index cf980c37c3..a2dd5475d9 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-10-04 13:04 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-10-04 13:04 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=8ba31da322cb6a9c469dc78db1d48e79ce4dc324
commit 8ba31da322cb6a9c469dc78db1d48e79ce4dc324
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index cf980c37c3..a2dd5475d9 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-06-09 21:25 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 21:25 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d6783bd48aca935c05302c109136dde0d4deb3ff
commit d6783bd48aca935c05302c109136dde0d4deb3ff
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 27963ef6dc..ce830ac1fa 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-06-09 13:22 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 13:22 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d6783bd48aca935c05302c109136dde0d4deb3ff
commit d6783bd48aca935c05302c109136dde0d4deb3ff
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 27963ef6dc..ce830ac1fa 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-06-03 14:11 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-06-03 14:11 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=e14d3437f7c11b7df9fce42cbecf8636c0d4733c
commit e14d3437f7c11b7df9fce42cbecf8636c0d4733c
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 27963ef6dc..ce830ac1fa 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-05-13 14:25 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-05-13 14:25 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1c099e5d3bae284da8ce5c6033a75f564efc1c6c
commit 1c099e5d3bae284da8ce5c6033a75f564efc1c6c
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 27963ef6dc..ce830ac1fa 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-05-12 19:39 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-05-12 19:39 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=16b6df84c50d6e2c603a937a824efe5942a02318
commit 16b6df84c50d6e2c603a937a824efe5942a02318
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 27963ef6dc..ce830ac1fa 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-05-10 18:29 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-05-10 18:29 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f185a4ff4fc4bebcd2d6d2c4b4784b0e645a295b
commit f185a4ff4fc4bebcd2d6d2c4b4784b0e645a295b
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 27963ef6dc..ce830ac1fa 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-04-29 14:09 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-04-29 14:09 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=447d60432eedf3cb3277759c287090053baff8c3
commit 447d60432eedf3cb3277759c287090053baff8c3
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 27963ef6dc..ce830ac1fa 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
* [glibc/azanella/clang] math: Fix isgreater* and isless* for clang
@ 2022-04-04 13:00 Adhemerval Zanella
0 siblings, 0 replies; 19+ messages in thread
From: Adhemerval Zanella @ 2022-04-04 13:00 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=7f8271865082ee05447a3d18e4767f4f3ca0d52e
commit 7f8271865082ee05447a3d18e4767f4f3ca0d52e
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Fri Apr 1 16:35:32 2022 -0300
math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
Diff:
---
math/math.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/math/math.h b/math/math.h
index 27963ef6dc..ce830ac1fa 100644
--- a/math/math.h
+++ b/math/math.h
@@ -1295,7 +1295,7 @@ iszero (__T __val)
#endif
#ifdef __USE_ISOC99
-# if __GNUC_PREREQ (3, 1)
+# if __GNUC_PREREQ (3, 1) && !defined __clang__
/* ISO C99 defines some macros to compare number while taking care for
unordered numbers. Many FPUs provide special instructions to support
these operations. Generic support in GCC for these as builtins went
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-04-17 20:12 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-07 14:12 [glibc/azanella/clang] math: Fix isgreater* and isless* for clang Adhemerval Zanella
-- strict thread matches above, loose matches on Subject: below --
2024-04-17 20:12 Adhemerval Zanella
2024-04-02 15:58 Adhemerval Zanella
2024-02-09 17:37 Adhemerval Zanella
2024-01-29 18:02 Adhemerval Zanella
2023-12-21 18:59 Adhemerval Zanella
2023-09-28 17:57 Adhemerval Zanella
2023-08-30 12:41 Adhemerval Zanella
2023-02-09 19:53 Adhemerval Zanella
2022-10-28 17:46 Adhemerval Zanella
2022-10-04 13:04 Adhemerval Zanella
2022-06-09 21:25 Adhemerval Zanella
2022-06-09 13:22 Adhemerval Zanella
2022-06-03 14:11 Adhemerval Zanella
2022-05-13 14:25 Adhemerval Zanella
2022-05-12 19:39 Adhemerval Zanella
2022-05-10 18:29 Adhemerval Zanella
2022-04-29 14:09 Adhemerval Zanella
2022-04-04 13:00 Adhemerval Zanella
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).