| Index: src/globals.h
|
| diff --git a/src/globals.h b/src/globals.h
|
| index fa50f22fe7e231fd965bc1fa85ef93f011689c81..d88a4cf611838e81cdf2ebe51efe9cc4b7735032 100644
|
| --- a/src/globals.h
|
| +++ b/src/globals.h
|
| @@ -253,12 +253,15 @@ const int kMinInt = -kMaxInt - 1;
|
|
|
| const uint32_t kMaxUInt32 = 0xFFFFFFFFu;
|
|
|
| -const int kCharSize = sizeof(char); // NOLINT
|
| -const int kShortSize = sizeof(short); // NOLINT
|
| -const int kIntSize = sizeof(int); // NOLINT
|
| -const int kDoubleSize = sizeof(double); // NOLINT
|
| -const int kIntptrSize = sizeof(intptr_t); // NOLINT
|
| -const int kPointerSize = sizeof(void*); // NOLINT
|
| +const int kCharSize = sizeof(char); // NOLINT
|
| +const int kShortSize = sizeof(short); // NOLINT
|
| +const int kIntSize = sizeof(int); // NOLINT
|
| +const int kDoubleSize = sizeof(double); // NOLINT
|
| +const int kIntptrSize = sizeof(intptr_t); // NOLINT
|
| +const int kPointerSize = sizeof(void*); // NOLINT
|
| +const int kRegisterSize = kPointerSize;
|
| +const int kPCOnStackSize = kRegisterSize;
|
| +const int kFPOnStackSize = kRegisterSize;
|
|
|
| const int kDoubleSizeLog2 = 3;
|
|
|
|
|