Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 799362
Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +2 lines)
Line  Link Here
0
-- a/src/filters/xBRZ/xbrz.cpp 2019-10-02 14:17:30.000000000 -0000
0
++ b/src/filters/xBRZ/xbrz.cpp 2021-06-30 14:11:07.604831731 -0000
Lines 66-72 Link Here
66
66
67
inline double fastSqrt(double n)
67
inline double fastSqrt(double n)
68
{
68
{
69
#ifdef __GNUC__ || __clang__ || __MINGW64_VERSION_MAJOR || __MINGW32_MAJOR_VERSION
69
#if (defined(__GNUC__) || defined(__clang__)) && (defined(__x86_64__) || defined(__i386__))
70
    __asm__ ("fsqrt" : "+t" (n));
70
    __asm__ ("fsqrt" : "+t" (n));
71
    return n;
71
    return n;
72
#elif _MSC_VER && _M_IX86
72
#elif _MSC_VER && _M_IX86

Return to bug 799362