| Index: runtime/vm/assembler_ia32.h
|
| diff --git a/runtime/vm/assembler_ia32.h b/runtime/vm/assembler_ia32.h
|
| index ae5a0cd1e8f88526fc70177dfc78cd790c2d4d9c..57e1a7209a7aca2bc3e0f02edf3e459864b86e8d 100644
|
| --- a/runtime/vm/assembler_ia32.h
|
| +++ b/runtime/vm/assembler_ia32.h
|
| @@ -764,14 +764,17 @@ class Assembler : public ValueObject {
|
| // L:
|
| static const intptr_t kEntryPointToPcMarkerOffset = 8;
|
|
|
| + void BumpAllocationCount(intptr_t cid,
|
| + Register temp_reg);
|
| +
|
| // Inlined allocation of an instance of class 'cls', code has no runtime
|
| // calls. Jump to 'failure' if the instance cannot be allocated here.
|
| // Allocated instance is returned in 'instance_reg'.
|
| // Only the tags field of the object is initialized.
|
| void TryAllocate(const Class& cls,
|
| - Label* failure,
|
| - bool near_jump,
|
| - Register instance_reg);
|
| + Label* failure,
|
| + bool near_jump,
|
| + Register instance_reg);
|
|
|
| // Debugging and bringup support.
|
| void Stop(const char* message);
|
|
|