Added back missing return statement

This commit is contained in:
Jasper Yujin Geer
2022-08-10 18:25:29 -07:00
parent 5b621d5be1
commit 57dd5ec4db

View File

@@ -2515,10 +2515,10 @@ void check_shift(CheckerContext *c, Operand *x, Operand *y, Ast *node, Type *typ
gb_string_free(x_str);
gb_string_free(to_type);
x->mode = Addressing_Invalid;
return;
}
}
// x->value = x_val;
return;
}
}