Skip to content
Snippets Groups Projects
Commit a5b70a4b authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Add compat shim for fuse_statement_streams_with_unique_ids

parent 5a034257
No related branches found
No related tags found
No related merge requests found
...@@ -50,6 +50,15 @@ def fuse_statement_streams_with_unique_ids(statements_a, statements_b): ...@@ -50,6 +50,15 @@ def fuse_statement_streams_with_unique_ids(statements_a, statements_b):
return new_statements, old_b_id_to_new_b_id return new_statements, old_b_id_to_new_b_id
def fuse_instruction_streams_with_unique_ids(insns_a, insns_b):
from warnings import warn
warn("fuse_instruction_streams_with_unique_ids has been renamed to "
"fuse_statement_streams_with_unique_ids", DeprecationWarning,
stacklevel=2)
return fuse_statement_streams_with_unique_ids(insns_a, insns_b)
# }}} # }}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment