* Given some sratch space, return the corresponding register. */
| 556 | * Given some sratch space, return the corresponding register. |
| 557 | */ |
| 558 | static Register getScratchRegister(int slot) |
| 559 | { |
| 560 | return (slot < 0 || slot > RMAX_IDX? REGISTER_INVALID: getReg(slot)); |
| 561 | } |
| 562 | |
| 563 | /* |
| 564 | * Send instructions that ensure the given register is saved. |
no test coverage detected