Move deref_to_depth to expr/ir_ops.py

This commit is contained in:
Pragyansh Chaturvedi
2025-10-13 04:01:27 +05:30
parent c5f0a2806f
commit 45e6ce5e5c
3 changed files with 54 additions and 48 deletions

View File

@ -1,5 +1,6 @@
from .expr_pass import eval_expr, handle_expr, get_operand_value, CallHandlerRegistry
from .type_normalization import convert_to_bool, get_base_type_and_depth, deref_to_depth
from .type_normalization import convert_to_bool, get_base_type_and_depth
from .ir_ops import deref_to_depth
__all__ = [
"eval_expr",