| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 4fe6d4af9ca815023c77159b7a3a77bb50ccb2b0..ad77e4b0dc2173510d6ed6f70888ca7795909ab9 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -2994,15 +2994,11 @@ class Code: public HeapObject {
|
| inline void CodeIterateBody(ObjectVisitor* v);
|
|
|
| template<typename StaticVisitor>
|
| - inline void CodeIterateBody();
|
| + inline void CodeIterateBody(Heap* heap);
|
| #ifdef DEBUG
|
| void CodePrint();
|
| void CodeVerify();
|
| #endif
|
| - // Code entry points are aligned to 32 bytes.
|
| - static const int kCodeAlignmentBits = 5;
|
| - static const int kCodeAlignment = 1 << kCodeAlignmentBits;
|
| - static const int kCodeAlignmentMask = kCodeAlignment - 1;
|
|
|
| // Layout description.
|
| static const int kInstructionSizeOffset = HeapObject::kHeaderSize;
|
|
|