| Index: src/compiler.h
|
| diff --git a/src/compiler.h b/src/compiler.h
|
| index d16d6dc62f2251d85f85c5fcaed22086eed9af1f..bdb1449fab12e23c366c03fdb67e9fb677e07d45 100644
|
| --- a/src/compiler.h
|
| +++ b/src/compiler.h
|
| @@ -396,17 +396,10 @@ class CompilationInfo final {
|
| prologue_offset_ = prologue_offset;
|
| }
|
|
|
| - int start_position_for(uint32_t inlining_id) {
|
| - return inlined_function_infos_.at(inlining_id).start_position;
|
| - }
|
| - const std::vector<InlinedFunctionInfo>& inlined_function_infos() {
|
| + std::vector<InlinedFunctionInfo>& inlined_function_infos() {
|
| return inlined_function_infos_;
|
| }
|
|
|
| - void LogDeoptCallPosition(int pc_offset, int inlining_id);
|
| - int TraceInlinedFunction(Handle<SharedFunctionInfo> shared,
|
| - SourcePosition position, int pareint_id);
|
| -
|
| CompilationDependencies* dependencies() { return &dependencies_; }
|
|
|
| bool HasSameOsrEntry(Handle<JSFunction> function, BailoutId osr_ast_id) {
|
|
|