mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Disable buggy escape analysis
This commit is contained in:
@@ -1397,6 +1397,7 @@ bool check_stmt_internal_builtin_proc_id(Ast *expr, BuiltinProcId *id_) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool check_expr_is_stack_variable(Ast *expr) {
|
bool check_expr_is_stack_variable(Ast *expr) {
|
||||||
|
/*
|
||||||
expr = unparen_expr(expr);
|
expr = unparen_expr(expr);
|
||||||
Entity *e = entity_of_node(expr);
|
Entity *e = entity_of_node(expr);
|
||||||
if (e && e->kind == Entity_Variable) {
|
if (e && e->kind == Entity_Variable) {
|
||||||
@@ -1410,6 +1411,7 @@ bool check_expr_is_stack_variable(Ast *expr) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user