indentation
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user