mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-16 01:35:26 +00:00
Add nullptr assert for #5875
This commit is contained in:
@@ -1633,6 +1633,8 @@ gb_internal bool is_expr_from_a_parameter(CheckerContext *ctx, Ast *expr) {
|
||||
} else if (expr->kind == Ast_Ident) {
|
||||
Operand x= {};
|
||||
Entity *e = check_ident(ctx, &x, expr, nullptr, nullptr, true);
|
||||
GB_ASSERT(e != nullptr);
|
||||
|
||||
if (e->flags & EntityFlag_Param) {
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user