| Index: test/cctest/compiler/test-codegen-deopt.cc
|
| diff --git a/test/cctest/compiler/test-codegen-deopt.cc b/test/cctest/compiler/test-codegen-deopt.cc
|
| index 8217229bd588b85ceac87ed7e4d8ce698dd7aa74..189fddb94cafd85b8462ac3baad4c3a8556c62b8 100644
|
| --- a/test/cctest/compiler/test-codegen-deopt.cc
|
| +++ b/test/cctest/compiler/test-codegen-deopt.cc
|
| @@ -145,8 +145,9 @@ class TrivialDeoptCodegenTester : public DeoptCodegenTester {
|
| Node* stack = m.NewNode(common.StateValues(0));
|
|
|
| Node* state_node = m.NewNode(
|
| - common.FrameState(JS_FRAME, bailout_id, kIgnoreOutput), parameters,
|
| - locals, stack, caller_context_node, m.UndefinedConstant());
|
| + common.FrameState(JS_FRAME, bailout_id,
|
| + OutputFrameStateCombine::Ignore()),
|
| + parameters, locals, stack, caller_context_node, m.UndefinedConstant());
|
|
|
| Handle<Context> context(deopt_function->context(), CcTest::i_isolate());
|
| Unique<Object> context_constant =
|
| @@ -259,8 +260,9 @@ class TrivialRuntimeDeoptCodegenTester : public DeoptCodegenTester {
|
| Node* stack = m.NewNode(common.StateValues(0));
|
|
|
| Node* state_node = m.NewNode(
|
| - common.FrameState(JS_FRAME, bailout_id, kIgnoreOutput), parameters,
|
| - locals, stack, context_node, m.UndefinedConstant());
|
| + common.FrameState(JS_FRAME, bailout_id,
|
| + OutputFrameStateCombine::Ignore()),
|
| + parameters, locals, stack, context_node, m.UndefinedConstant());
|
|
|
| m.CallRuntime1(Runtime::kDeoptimizeFunction, this_fun_node, context_node,
|
| state_node);
|
|
|