| 133 | // Read the opcode and check for errors. |
| 134 | uint64_t Offset = FMgr.getOffset(); |
| 135 | EXPECTED_TRY(OpCode Code, loadOpCode().map_error([this](auto E) { |
| 136 | return logLoadError(E, FMgr.getLastOffset(), ASTNodeAttr::Instruction); |
| 137 | })); |
| 138 | |
| 139 | // Check with proposals. |
| 140 | if (auto Res = Conf.isInstrNeedProposal(Code); unlikely(!!Res)) { |
no test coverage detected