Skip to content
Snippets Groups Projects
Commit 7b0de9af authored by Jayke Meijer's avatar Jayke Meijer
Browse files

Started work on copy propagation.

parent 8a08a3a2
No related branches found
No related tags found
No related merge requests found
......@@ -54,3 +54,10 @@ def fold_constants(block):
Constant folding:
"""
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
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