| Index: src/lithium.h
|
| diff --git a/src/lithium.h b/src/lithium.h
|
| index b4eb2bb2d091610f3cae6b83ba3039be40f01422..089926e71a6f31b071afa3c195f157bb310dabff 100644
|
| --- a/src/lithium.h
|
| +++ b/src/lithium.h
|
| @@ -156,8 +156,8 @@ class LUnallocated: public LOperand {
|
| };
|
|
|
| static const int kMaxVirtualRegisters = 1 << kVirtualRegisterWidth;
|
| - static const int kMaxFixedIndex = (1 << kFixedIndexWidth) - 1;
|
| - static const int kMinFixedIndex = -(1 << kFixedIndexWidth);
|
| + static const int kMaxFixedIndex = (1 << (kFixedIndexWidth - 1)) - 1;
|
| + static const int kMinFixedIndex = -(1 << (kFixedIndexWidth - 1));
|
|
|
| bool HasAnyPolicy() const {
|
| return policy() == ANY;
|
|
|