kill old code

This commit is contained in:
Ryan Fleury
2025-04-23 11:55:58 -07:00
parent 264dbc8199
commit c766ffe0a3
4 changed files with 0 additions and 17 deletions
-9
View File
@@ -334,15 +334,6 @@ e_expr_ref(Arena *arena, E_Expr *ref)
return expr;
}
internal E_Expr *
e_expr_ref_deref(Arena *arena, E_Expr *rhs)
{
E_Expr *root = e_push_expr(arena, E_ExprKind_Deref, 0);
E_Expr *rhs_ref = e_expr_ref(arena, rhs);
e_expr_push_child(root, rhs_ref);
return root;
}
internal E_Expr *
e_expr_ref_cast(Arena *arena, E_TypeKey type_key, E_Expr *rhs)
{