| Index: src/compiler/store-store-elimination.cc
|
| diff --git a/src/compiler/store-store-elimination.cc b/src/compiler/store-store-elimination.cc
|
| index 3b7e3e053e018e1ee194cafcb02845d528857051..cd0c75c297839edc59fe66a8751f4b8cecae41b0 100644
|
| --- a/src/compiler/store-store-elimination.cc
|
| +++ b/src/compiler/store-store-elimination.cc
|
| @@ -130,7 +130,7 @@ void StoreStoreElimination::Run() {
|
| NodeVector eligible(temp_zone()); // loops over all nodes
|
| AllNodes all(temp_zone(), jsgraph()->graph());
|
|
|
| - for (Node* node : all.live) {
|
| + for (Node* node : all.reachable) {
|
| if (IsEligibleNode(node)) {
|
| eligible.push_back(node);
|
| }
|
|
|