Commit f971a60e authored by Jayke Meijer's avatar Jayke Meijer

Added check if li already has int as argument.

parent fd46a314
...@@ -141,7 +141,10 @@ def fold_constants(block): ...@@ -141,7 +141,10 @@ def fold_constants(block):
if s.name == 'li': if s.name == 'li':
# Save value in register # Save value in register
register[s[0]] = int(s[1], 16) if not isinstance(s[1], int):
register[s[0]] = int(s[1], 16)
else:
register[s[0]] = s[1]
known.append((s[0], register[s[0]])) known.append((s[0], register[s[0]]))
elif s.name == 'move' and s[0] in register: elif s.name == 'move' and s[0] in register:
reg_to, reg_from = s reg_to, reg_from = s
......
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