| Index: src/arm/constants-arm.h
|
| diff --git a/src/arm/constants-arm.h b/src/arm/constants-arm.h
|
| index 3adb916a54cf4bebc1b39568ff1096b21620c3fa..0ac567cb11f8ccb3252e1f9d4da8491e6d203d81 100644
|
| --- a/src/arm/constants-arm.h
|
| +++ b/src/arm/constants-arm.h
|
| @@ -89,6 +89,11 @@
|
| namespace v8 {
|
| namespace internal {
|
|
|
| +// Constant pool marker.
|
| +static const int kConstantPoolMarkerMask = 0xffe00000;
|
| +static const int kConstantPoolMarker = 0x0c000000;
|
| +static const int kConstantPoolLengthMask = 0x001ffff;
|
| +
|
| // Number of registers in normal ARM mode.
|
| static const int kNumRegisters = 16;
|
|
|
|
|