| 562 | //chensenhua add end |
| 563 | |
| 564 | uint32_t RangeInstructionOperands::GetOperand(size_t operand_index) const { |
| 565 | DCHECK_LT(operand_index, GetNumberOfOperands()); |
| 566 | return first_operand_ + operand_index; |
| 567 | } |
| 568 | |
| 569 | uint32_t VarArgsInstructionOperands::GetOperand(size_t operand_index) const { |
| 570 | DCHECK_LT(operand_index, GetNumberOfOperands()); |
nothing calls this directly
no test coverage detected