diff options
Diffstat (limited to 'src/passes/RedundantSetElimination.cpp')
-rw-r--r-- | src/passes/RedundantSetElimination.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/passes/RedundantSetElimination.cpp b/src/passes/RedundantSetElimination.cpp index 9a60331dd..3d21b7d71 100644 --- a/src/passes/RedundantSetElimination.cpp +++ b/src/passes/RedundantSetElimination.cpp @@ -298,7 +298,9 @@ struct RedundantSetElimination auto& setps = curr->contents.setps; for (auto** setp : setps) { auto* set = (*setp)->cast<LocalSet>(); - currValues[set->index] = getValue(set->value, currValues); + auto* value = Properties::getFallthrough( + set->value, getPassOptions(), *getModule()); + currValues[set->index] = getValue(value, currValues); } if (currValues == curr->contents.end) { // nothing changed, so no more work to do @@ -335,7 +337,9 @@ struct RedundantSetElimination for (auto** setp : setps) { auto* set = (*setp)->cast<LocalSet>(); auto oldValue = currValues[set->index]; - auto newValue = getValue(set->value, currValues); + auto* value = Properties::getFallthrough( + set->value, getPassOptions(), *getModule()); + auto newValue = getValue(value, currValues); auto index = set->index; if (newValue == oldValue) { remove(setp); |