indentation
This commit is contained in:
@@ -425,14 +425,14 @@ bool Cop1::SetCauseInvalid() {
|
|||||||
|
|
||||||
#define CHECK_FPE_IMPL(type, res, operation, convert) \
|
#define CHECK_FPE_IMPL(type, res, operation, convert) \
|
||||||
feclearexcept(FE_ALL_EXCEPT); \
|
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>()) \
|
if (TestExceptions<convert>()) \
|
||||||
return; \
|
return; \
|
||||||
type res = v##res;
|
type res = v##res;
|
||||||
|
|
||||||
#define CHECK_FPE_IMPL_CONST(type, res, operation, convert) \
|
#define CHECK_FPE_IMPL_CONST(type, res, operation, convert) \
|
||||||
feclearexcept(FE_ALL_EXCEPT); \
|
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>()) \
|
if (TestExceptions<convert>()) \
|
||||||
return; \
|
return; \
|
||||||
const type res = v##res;
|
const type res = v##res;
|
||||||
|
|||||||
Reference in New Issue
Block a user