Convenience wrapper around `CodeGenContext::reg_for_class`, to request the next available general purpose register.
(&mut self, masm: &mut M)
| 182 | /// Convenience wrapper around `CodeGenContext::reg_for_class`, to |
| 183 | /// request the next available general purpose register. |
| 184 | pub fn any_gpr<M: MacroAssembler>(&mut self, masm: &mut M) -> Result<Reg> { |
| 185 | self.reg_for_class(RegClass::Int, masm) |
| 186 | } |
| 187 | |
| 188 | /// Convenience wrapper around `CodeGenContext::reg_for_class`, to |
| 189 | /// request the next available floating point register. |
no test coverage detected