Convenience wrapper around `CodeGenContext::reg_for_class`, to request the next available floating point register.
(&mut self, masm: &mut M)
| 188 | /// Convenience wrapper around `CodeGenContext::reg_for_class`, to |
| 189 | /// request the next available floating point register. |
| 190 | pub fn any_fpr<M: MacroAssembler>(&mut self, masm: &mut M) -> Result<Reg> { |
| 191 | self.reg_for_class(RegClass::Float, masm) |
| 192 | } |
| 193 | |
| 194 | /// Executes the provided function, guaranteeing that the specified set of |
| 195 | /// registers, if any, remain unallocatable throughout the function's |
no test coverage detected