Skip to content
Snippets Groups Projects
Commit d890c575 authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Added newline for readability

parent 7343f43c
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,8 @@ def optimize_block(block): ...@@ -58,7 +58,8 @@ def optimize_block(block):
# or fold_constants(block) # or fold_constants(block)
while eliminate_common_subexpressions(block) \ while eliminate_common_subexpressions(block) \
| fold_constants(block) | copy_propagation(block): | fold_constants(block) \
| copy_propagation(block):
pass pass
def optimize(statements, verbose=0): def optimize(statements, verbose=0):
......
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