Merge pull request #17851 from pstef/ffast-math

Pop fast-math at the end of the file
This commit is contained in:
LibretroAdmin 2025-05-03 16:48:59 +02:00 committed by GitHub
commit 2a225a20dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -22,7 +22,8 @@
/* Bog-standard windowed SINC implementation. */
#if defined(__GNUC__) && defined(__OPTIMIZE__)
#if defined(__GNUC__) && defined(__OPTIMIZE__) && !defined(__clang__)
#pragma GCC push_options
#pragma GCC optimize ("fast-math")
#endif
@ -1027,3 +1028,7 @@ retro_resampler_t sinc_resampler = {
"sinc",
"sinc"
};
#if defined(__GNUC__) && defined(__OPTIMIZE__) && !defined(__clang__)
#pragma GCC pop_options
#endif