diff --git a/miasm/analysis/data_flow.py b/miasm/analysis/data_flow.py index 5db4ce4ac..66743c8c4 100644 --- a/miasm/analysis/data_flow.py +++ b/miasm/analysis/data_flow.py @@ -1949,6 +1949,14 @@ def may_interfere(self, dsts, src): return True return False + def may_interfer(self, dsts, src): + warnings.warn( + "Function `may_interfer` is deprecated, use `may_interfere` instead", + DeprecationWarning, + stacklevel=2, + ) + return self.may_interfere(dsts, src) + def _get_representative_expr(self, expr): representative = self.equivalence_classes.get_master(expr) if representative is None: