}
op(_GUARD_CODE_VERSION_RETURN_VALUE, (version/2 -- )) {
+ (void)version;
if (ctx->frame->caller) {
REPLACE_OP(this_instr, _NOP, 0, 0);
}
}
op(_GUARD_CODE_VERSION_YIELD_VALUE, (version/2 -- )) {
+ (void)version;
if (ctx->frame->caller) {
REPLACE_OP(this_instr, _NOP, 0, 0);
}
}
op(_GUARD_CODE_VERSION_RETURN_GENERATOR, (version/2 -- )) {
+ (void)version;
if (ctx->frame->caller) {
REPLACE_OP(this_instr, _NOP, 0, 0);
}
case _GUARD_CODE_VERSION_YIELD_VALUE: {
uint32_t version = (uint32_t)this_instr->operand0;
+ (void)version;
if (ctx->frame->caller) {
REPLACE_OP(this_instr, _NOP, 0, 0);
}
case _GUARD_CODE_VERSION_RETURN_VALUE: {
uint32_t version = (uint32_t)this_instr->operand0;
+ (void)version;
if (ctx->frame->caller) {
REPLACE_OP(this_instr, _NOP, 0, 0);
}
case _GUARD_CODE_VERSION_RETURN_GENERATOR: {
uint32_t version = (uint32_t)this_instr->operand0;
+ (void)version;
if (ctx->frame->caller) {
REPLACE_OP(this_instr, _NOP, 0, 0);
}