Disable a fixup, which might not be necessary now

This commit is contained in:
Jason Turner 2021-05-11 09:16:41 -06:00
parent eedec41b1e
commit a1c596622b
1 changed files with 5 additions and 2 deletions

View File

@ -984,9 +984,12 @@ void run(const Personality &personality, std::istream &input)
}
}
while (fix_overwritten_flags(new_instructions)) {
// it seems that with the move to AVR for the base, this
// fixup no longer makes sense, but I'm not going to remove it just yet
// until we have more complex C++ examples working
// while (fix_overwritten_flags(new_instructions)) {
// do it however many times it takes
}
// }
while (optimize(new_instructions)) {
// do it however many times it takes