Commit 7b0de9af authored by Jayke Meijer's avatar Jayke Meijer

Started work on copy propagation.

parent 8a08a3a2
...@@ -54,3 +54,10 @@ def fold_constants(block): ...@@ -54,3 +54,10 @@ def fold_constants(block):
Constant folding: Constant folding:
""" """
return False return False
def copy_propagtion(block):
"""
Rename values that were copied to there original, so the copy statement
might be useless, allowing it to be removed by dead code elimination.
"""
return false
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