mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Fix $c >>= 2
This commit is contained in:
@@ -4780,7 +4780,10 @@ static bool sema_expr_analyse_shift(SemaContext *context, Expr *expr, Expr *left
|
||||
*/
|
||||
static bool sema_expr_analyse_shift_assign(SemaContext *context, Expr *expr, Expr *left, Expr *right)
|
||||
{
|
||||
|
||||
if (left->expr_kind == EXPR_CT_IDENT)
|
||||
{
|
||||
return sema_binary_analyse_ct_common_assign(context, expr, left);
|
||||
}
|
||||
// 1. Analyze the two sub lhs & rhs *without coercion*
|
||||
if (!sema_binary_analyse_subexpr(context, expr, left, right)) return false;
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
#define COMPILER_VERSION "0.3.97"
|
||||
#define COMPILER_VERSION "0.3.98"
|
||||
Reference in New Issue
Block a user