| Index: include/v8.h
|
| diff --git a/include/v8.h b/include/v8.h
|
| index 56492f7c474c211743e2522c58eccf8a665cd3c4..cf4b4bad48061fa213a8952b94ef09c8f3178e18 100644
|
| --- a/include/v8.h
|
| +++ b/include/v8.h
|
| @@ -5517,7 +5517,12 @@ class Internals {
|
| // These values match non-compiler-dependent values defined within
|
| // the implementation of v8.
|
| static const int kHeapObjectMapOffset = 0;
|
| +#if V8_TARGET_LITTLE_ENDIAN
|
| static const int kMapInstanceTypeOffset = 1 * kApiPointerSize + kApiIntSize;
|
| +#else
|
| + static const int kMapInstanceTypeOffset =
|
| + 1 * kApiPointerSize + kApiIntSize + 1;
|
| +#endif
|
| static const int kStringResourceOffset = 3 * kApiPointerSize;
|
|
|
| static const int kOddballKindOffset = 3 * kApiPointerSize;
|
|
|