| 178 | } |
| 179 | |
| 180 | void JUTException::setFPException(u32 fpscr_enable_bits) |
| 181 | { |
| 182 | __OSFpscrEnableBits = fpscr_enable_bits; |
| 183 | if (fpscr_enable_bits) |
| 184 | { |
| 185 | OSSetErrorHandler(OS_ERROR_FPE, (OSErrorHandler)errorHandler); |
| 186 | } |
| 187 | else |
| 188 | { |
| 189 | OSSetErrorHandler(OS_ERROR_FPE, nullptr); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | void JUTException::showFloatSub(int index, f32 value) |
| 194 | { |
nothing calls this directly
no test coverage detected