Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions framework/common/tcuFloatFormat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,14 @@ static FloatFormat nativeFormat(void)
return FloatFormat(Limits::min_exponent - 1, // These have a built-in offset of one
Limits::max_exponent - 1,
Limits::digits - 1, // don't count the hidden bit
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
Limits::has_denorm != std::denorm_absent, Limits::has_infinity ? YES : NO,
Limits::has_quiet_NaN ? YES : NO,
((Limits::has_denorm == std::denorm_present) ? YES :
(Limits::has_denorm == std::denorm_absent) ? NO :
MAYBE));
#pragma clang diagnostic pop
}

FloatFormat FloatFormat::nativeFloat(void)
Expand Down