forked from bminor/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LoongArch: Use __builtin_{fmax,fmaxf,fmin,fminf} with GCC >= 13
GCC 13 compiles these built-ins to {fmax,fmin}.{s/d} instruction, use them instead of the generic implementation. Link: https://gcc.gnu.org/r13-2085 Signed-off-by: Xi Ruoyao <xry111@xry111.site>
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#if __GNUC_PREREQ (13, 0) | ||
# define USE_FMAX_BUILTIN 1 | ||
# define USE_FMAXF_BUILTIN 1 | ||
#else | ||
# define USE_FMAX_BUILTIN 0 | ||
# define USE_FMAXF_BUILTIN 0 | ||
#endif | ||
|
||
#define USE_FMAXL_BUILTIN 0 | ||
#define USE_FMAXF128_BUILTIN 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#if __GNUC_PREREQ (13, 0) | ||
# define USE_FMIN_BUILTIN 1 | ||
# define USE_FMINF_BUILTIN 1 | ||
#else | ||
# define USE_FMIN_BUILTIN 0 | ||
# define USE_FMINF_BUILTIN 0 | ||
#endif | ||
|
||
#define USE_FMINL_BUILTIN 0 | ||
#define USE_FMINF128_BUILTIN 0 |