This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 0c3028cdc876d67ec6526b3a532c172c8ce3909b Author: Kacper Michajłow <[email protected]> AuthorDate: Sat Aug 22 17:41:44 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Tue Sep 8 03:00:34 2026 +0200 swscale/uops_backend: remove always-true GCC version checks The clang exclusion on the finite-math-only pragma is kept, previously implied by clang reporting itself as gcc 4.2. Signed-off-by: Kacper Michajłow <[email protected]> --- libswscale/uops_backend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libswscale/uops_backend.c b/libswscale/uops_backend.c index 5b35c1b585..5208155706 100644 --- a/libswscale/uops_backend.c +++ b/libswscale/uops_backend.c @@ -28,13 +28,13 @@ */ #ifdef __clang__ #pragma STDC FP_CONTRACT OFF -#elif AV_GCC_VERSION_AT_LEAST(4, 8) +#elif defined(__GNUC__) #pragma GCC optimize ("fp-contract=off") #elif defined(_MSC_VER) #pragma fp_contract (off) #endif -#if AV_GCC_VERSION_AT_LEAST(4, 4) +#if defined(__GNUC__) && !defined(__clang__) #pragma GCC optimize ("finite-math-only") #endif -- To stop receiving notification emails like this one, please contact [email protected]. _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
