| Index: runtime/vm/assembler_x64.h
|
| diff --git a/runtime/vm/assembler_x64.h b/runtime/vm/assembler_x64.h
|
| index 4f6eac34621fe52a069c76daedb6be0469e5f6ff..5f5aea4fb4bbb709af44b395bfcdafdd2f1056f4 100644
|
| --- a/runtime/vm/assembler_x64.h
|
| +++ b/runtime/vm/assembler_x64.h
|
| @@ -975,24 +975,20 @@ class Assembler : public ValueObject {
|
| void LeaveStubFrame();
|
|
|
| void UpdateAllocationStats(intptr_t cid,
|
| - Heap::Space space,
|
| - bool inline_isolate = true);
|
| + Heap::Space space);
|
|
|
| void UpdateAllocationStatsWithSize(intptr_t cid,
|
| Register size_reg,
|
| - Heap::Space space,
|
| - bool inline_isolate = true);
|
| + Heap::Space space);
|
| void UpdateAllocationStatsWithSize(intptr_t cid,
|
| intptr_t instance_size,
|
| - Heap::Space space,
|
| - bool inline_isolate = true);
|
| + Heap::Space space);
|
|
|
| // If allocation tracing for |cid| is enabled, will jump to |trace| label,
|
| // which will allocate in the runtime where tracing occurs.
|
| void MaybeTraceAllocation(intptr_t cid,
|
| Label* trace,
|
| - bool near_jump,
|
| - bool inline_isolate = true);
|
| + bool near_jump);
|
|
|
| // Inlined allocation of an instance of class 'cls', code has no runtime
|
| // calls. Jump to 'failure' if the instance cannot be allocated here.
|
|
|