| 982 | } |
| 983 | |
| 984 | inline 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 | |
| 992 | inline double Registers_ppc::getFloatRegister(int regNum) const { |
| 993 | assert(validFloatRegister(regNum)); |
no outgoing calls
no test coverage detected