MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / F80_isnan

Function F80_isnan

source/emulation/cpu/common/fpu.cpp:52–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50#endif
51
52bool F80_isnan(extFloat80_t& f) {
53 if ((f.signExp & 0x7FFF) != 0x7FFF) return false;
54 return (f.signif & UINT64_C(0x7FFFFFFFFFFFFFFF)) != 0;
55}
56
57bool F80_isinf(extFloat80_t& f) {
58 if ((f.signExp & 0x7FFF) != 0x7FFF) return false;

Callers 6

FCOMIMethod · 0.85
FCOMMethod · 0.85
FPREMMethod · 0.85
FXAMMethod · 0.85
FSCALEMethod · 0.85
GetTagMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected