indentation

This commit is contained in:
irisz64
2025-09-03 12:52:18 +02:00
parent 6737977183
commit 2f4a714485

View File

@@ -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<convert>()) \
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<convert>()) \
return; \
const type res = v##res;