}
op(_COMPARE_OP, (left, right -- res)) {
+ (void)left;
+ (void)right;
if (oparg & 16) {
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
}
}
op(_COMPARE_OP_INT, (left, right -- res)) {
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
}
op(_COMPARE_OP_FLOAT, (left, right -- res)) {
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
}
op(_COMPARE_OP_STR, (left, right -- res)) {
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
}
op(_IS_OP, (left, right -- res)) {
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
}
op(_CONTAINS_OP, (left, right -- res)) {
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
}
_Py_UopsSymbol *res;
right = stack_pointer[-1];
left = stack_pointer[-2];
+ (void)left;
+ (void)right;
if (oparg & 16) {
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
}
_Py_UopsSymbol *res;
right = stack_pointer[-1];
left = stack_pointer[-2];
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
stack_pointer[-2] = res;
stack_pointer += -1;
_Py_UopsSymbol *res;
right = stack_pointer[-1];
left = stack_pointer[-2];
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
stack_pointer[-2] = res;
stack_pointer += -1;
_Py_UopsSymbol *res;
right = stack_pointer[-1];
left = stack_pointer[-2];
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
stack_pointer[-2] = res;
stack_pointer += -1;
_Py_UopsSymbol *res;
right = stack_pointer[-1];
left = stack_pointer[-2];
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
stack_pointer[-2] = res;
stack_pointer += -1;
_Py_UopsSymbol *res;
right = stack_pointer[-1];
left = stack_pointer[-2];
+ (void)left;
+ (void)right;
OUT_OF_SPACE_IF_NULL(res = sym_new_type(ctx, &PyBool_Type));
stack_pointer[-2] = res;
stack_pointer += -1;