diff --git a/src/backend/core/interpreter/cop1instructions.cpp b/src/backend/core/interpreter/cop1instructions.cpp index 3f0f891f..59a1e6e3 100644 --- a/src/backend/core/interpreter/cop1instructions.cpp +++ b/src/backend/core/interpreter/cop1instructions.cpp @@ -425,14 +425,14 @@ bool Cop1::SetCauseInvalid() { #define CHECK_FPE_IMPL(type, res, operation, convert) \ feclearexcept(FE_ALL_EXCEPT); \ - volatile type v##res = [&]() __attribute__((noinline)) -> type { return operation; }(); \ + volatile type v##res = [&]() __attribute__((noinline)) -> type { return operation; }(); \ if (TestExceptions()) \ return; \ type res = v##res; #define CHECK_FPE_IMPL_CONST(type, res, operation, convert) \ feclearexcept(FE_ALL_EXCEPT); \ - volatile type v##res = [&]() __attribute__((noinline)) -> type { return operation; }(); \ + volatile type v##res = [&]() __attribute__((noinline)) -> type { return operation; }(); \ if (TestExceptions()) \ return; \ const type res = v##res;