| Index: test/cctest/compiler/test-js-typed-lowering.cc
 | 
| diff --git a/test/cctest/compiler/test-js-typed-lowering.cc b/test/cctest/compiler/test-js-typed-lowering.cc
 | 
| index 64abe5922ac59ca8cbda92c60a0f2870f4d18887..6738595a8427dd7d0607ee5763eb9c9449ddca1c 100644
 | 
| --- a/test/cctest/compiler/test-js-typed-lowering.cc
 | 
| +++ b/test/cctest/compiler/test-js-typed-lowering.cc
 | 
| @@ -79,10 +79,10 @@ class JSTypedLoweringTester : public HandleAndZoneScope {
 | 
|      Node* locals = graph.NewNode(common.StateValues(0));
 | 
|      Node* stack = graph.NewNode(common.StateValues(0));
 | 
|  
 | 
| -    Node* state_node =
 | 
| -        graph.NewNode(common.FrameState(JS_FRAME, BailoutId::None(),
 | 
| -                                        OutputFrameStateCombine::Ignore()),
 | 
| -                      parameters, locals, stack, context, UndefinedConstant());
 | 
| +    Node* state_node = graph.NewNode(
 | 
| +        common.FrameState(BailoutId::None(), OutputFrameStateCombine::Ignore(),
 | 
| +                          nullptr),
 | 
| +        parameters, locals, stack, context, UndefinedConstant());
 | 
|  
 | 
|      return state_node;
 | 
|    }
 | 
| 
 |