| 231 | } |
| 232 | |
| 233 | constexpr int get_fpr_single_context_offset(int fpr_index) { |
| 234 | return offsetof(recomp_context, f0.fl) + sizeof(recomp_context::f0) * fpr_index; |
| 235 | } |
| 236 | |
| 237 | constexpr int get_fpr_double_context_offset(int fpr_index) { |
| 238 | return offsetof(recomp_context, f0.d) + sizeof(recomp_context::f0) * fpr_index; |
no outgoing calls
no test coverage detected