Index: src/compiler/common-operator.cc |
diff --git a/src/compiler/common-operator.cc b/src/compiler/common-operator.cc |
index 1bff9809c0c75a5fd3c02288d4f9fec10b3fbebd..c92bae9b191d0310539f2e36e7c17077eaadd655 100644 |
--- a/src/compiler/common-operator.cc |
+++ b/src/compiler/common-operator.cc |
@@ -861,11 +861,9 @@ const Operator* CommonOperatorBuilder::ResizeMergeOrPhi(const Operator* op, |
const FrameStateFunctionInfo* |
CommonOperatorBuilder::CreateFrameStateFunctionInfo( |
FrameStateType type, int parameter_count, int local_count, |
- Handle<SharedFunctionInfo> shared_info, |
- ContextCallingMode context_calling_mode) { |
+ Handle<SharedFunctionInfo> shared_info) { |
return new (zone()->New(sizeof(FrameStateFunctionInfo))) |
- FrameStateFunctionInfo(type, parameter_count, local_count, shared_info, |
- context_calling_mode); |
+ FrameStateFunctionInfo(type, parameter_count, local_count, shared_info); |
} |
} // namespace compiler |