| Index: src/gdb-jit.cc
|
| diff --git a/src/gdb-jit.cc b/src/gdb-jit.cc
|
| index 4d57e254609848372afa31633ea2ae5cba2790e0..aee0d6bd9a6e71652e51099a548e3b02fb3851e5 100644
|
| --- a/src/gdb-jit.cc
|
| +++ b/src/gdb-jit.cc
|
| @@ -1094,7 +1094,7 @@ class DebugInfoSection : public DebugSection {
|
|
|
| if (desc_->IsInfoAvailable()) {
|
| CompilationInfo* info = desc_->info();
|
| - ScopeInfo<FreeStoreAllocationPolicy> scope_info(info->scope());
|
| + ScopeInfo<FreeStoreAllocator> scope_info(info->scope());
|
| w->WriteULEB128(2);
|
| w->WriteString(desc_->name());
|
| w->Write<intptr_t>(desc_->CodeStart());
|
| @@ -1306,7 +1306,7 @@ class DebugAbbrevSection : public DebugSection {
|
|
|
| if (extra_info) {
|
| CompilationInfo* info = desc_->info();
|
| - ScopeInfo<FreeStoreAllocationPolicy> scope_info(info->scope());
|
| + ScopeInfo<FreeStoreAllocator> scope_info(info->scope());
|
| int params = scope_info.number_of_parameters();
|
| int slots = scope_info.number_of_stack_slots();
|
| int context_slots = scope_info.number_of_context_slots();
|
|
|