| 648 | } |
| 649 | |
| 650 | void Assembler::SRA(GPR rd, GPR lhs, GPR rhs) noexcept { |
| 651 | EmitRType(m_buffer, 0b0100000, rhs, lhs, 0b101, rd, 0b0110011); |
| 652 | } |
| 653 | |
| 654 | void Assembler::SRAI(GPR rd, GPR rs, uint32_t shift) noexcept { |
| 655 | if (IsRV32(m_features)) { |
no test coverage detected