| Index: runtime/vm/stub_code_arm.cc
|
| diff --git a/runtime/vm/stub_code_arm.cc b/runtime/vm/stub_code_arm.cc
|
| index c04809d2ace2d061ba5d7035b141b5c2d80aebab..55db0abd338d1124619cd4d3b1c940a638c564d2 100644
|
| --- a/runtime/vm/stub_code_arm.cc
|
| +++ b/runtime/vm/stub_code_arm.cc
|
| @@ -678,7 +678,7 @@ void StubCode::GeneratePatchableAllocateArrayStub(Assembler* assembler,
|
|
|
| // Successfully allocated the object(s), now update top to point to
|
| // next object start and initialize the object.
|
| - __ LoadAllocationStatsAddress(R3, cid, space);
|
| + __ LoadAllocationStatsAddress(R3, cid);
|
| __ str(R7, Address(R6, 0));
|
| __ add(R0, R0, Operand(kHeapObjectTag));
|
|
|
| @@ -913,7 +913,7 @@ void StubCode::GenerateAllocateContextStub(Assembler* assembler) {
|
| // R2: object size.
|
| // R3: next object start.
|
| // R5: top address.
|
| - __ LoadAllocationStatsAddress(R6, cid, space);
|
| + __ LoadAllocationStatsAddress(R6, cid);
|
| __ str(R3, Address(R5, 0));
|
| __ add(R0, R0, Operand(kHeapObjectTag));
|
|
|
| @@ -1108,7 +1108,7 @@ void StubCode::GenerateAllocationStubForClass(
|
|
|
| // Load the address of the allocation stats table. We split up the load
|
| // and the increment so that the dependent load is not too nearby.
|
| - __ LoadAllocationStatsAddress(R5, cls.id(), space);
|
| + __ LoadAllocationStatsAddress(R5, cls.id());
|
|
|
| // R0: new object start.
|
| // R1: next object start.
|
|
|