@@ -67,19 +67,12 @@ def eval_fallback(self, frame: ForwardFrame, node: ir.Statement):
6767 return
6868
6969 def run (self , method : ir .Method , * args , ** kwargs ) -> tuple [ForwardFrame , Any ]:
70- self ._run_address_analysis (method , no_raise = False )
70+ self ._run_address_analysis (method )
7171 return super ().run (method , * args , ** kwargs )
7272
73- def run_no_raise (self , method : ir .Method , * args : Any , ** kwargs : Any ):
74- self ._run_address_analysis (method , no_raise = True )
75- return super ().run_no_raise (method , * args , ** kwargs )
76-
77- def _run_address_analysis (self , method : ir .Method , no_raise : bool ):
73+ def _run_address_analysis (self , method : ir .Method ):
7874 addr_analysis = AddressAnalysis (self .dialects )
79- if no_raise :
80- addr_frame , _ = addr_analysis .run_no_raise (method = method )
81- else :
82- addr_frame , _ = addr_analysis .run (method = method )
75+ addr_frame , _ = addr_analysis .run (method = method )
8376 self .addr_frame = addr_frame
8477
8578 # NOTE: make sure we have as many probabilities as we have addresses
0 commit comments