| Index: src/compiler/node-properties.cc
|
| diff --git a/src/compiler/node-properties.cc b/src/compiler/node-properties.cc
|
| index 9451df8566dadbb952d43aa88e36171155e896ad..dc33d603371801daaf7566c9a96dfe6841428465 100644
|
| --- a/src/compiler/node-properties.cc
|
| +++ b/src/compiler/node-properties.cc
|
| @@ -215,7 +215,8 @@ void NodeProperties::ReplaceUses(Node* node, Node* value, Node* effect,
|
| DCHECK_NOT_NULL(exception);
|
| edge.UpdateTo(exception);
|
| } else {
|
| - UNREACHABLE();
|
| + DCHECK_NOT_NULL(success);
|
| + edge.UpdateTo(success);
|
| }
|
| } else if (IsEffectEdge(edge)) {
|
| DCHECK_NOT_NULL(effect);
|
|
|