Commit d890c575 authored by Taddeus Kroes's avatar Taddeus Kroes

Added newline for readability

parent 7343f43c
...@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment