| 1193 | |
| 1194 | |
| 1195 | uint32_t LowLevelILOperand::GetIntrinsic() const |
| 1196 | { |
| 1197 | if (m_type != IntrinsicLowLevelOperand) |
| 1198 | throw LowLevelILInstructionAccessException(); |
| 1199 | return m_instr.GetRawOperandAsRegister(m_operandIndex); |
| 1200 | } |
| 1201 | |
| 1202 | |
| 1203 | SSARegister LowLevelILOperand::GetSSARegister() const |
nothing calls this directly
no test coverage detected