MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / validFloatRegister

Method validFloatRegister

system/lib/libunwind/src/Registers.hpp:984–990  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

982}
983
984inline bool Registers_ppc::validFloatRegister(int regNum) const {
985 if (regNum < UNW_PPC_F0)
986 return false;
987 if (regNum > UNW_PPC_F31)
988 return false;
989 return true;
990}
991
992inline double Registers_ppc::getFloatRegister(int regNum) const {
993 assert(validFloatRegister(regNum));

Callers 2

stepWithDwarfMethod · 0.80
validFloatRegMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected