| Index: src/mips/assembler-mips.cc
|
| diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc
|
| index e005f19712f74730c2489df2d741a810c8b920cc..0eb72a3a4735d0ca81f1d14be5f798fb53642751 100644
|
| --- a/src/mips/assembler-mips.cc
|
| +++ b/src/mips/assembler-mips.cc
|
| @@ -196,9 +196,11 @@ Register ToRegister(int num) {
|
| // -----------------------------------------------------------------------------
|
| // Implementation of RelocInfo.
|
|
|
| -const int RelocInfo::kApplyMask = RelocInfo::kCodeTargetMask |
|
| - 1 << RelocInfo::INTERNAL_REFERENCE |
|
| - 1 << RelocInfo::INTERNAL_REFERENCE_ENCODED;
|
| +const int RelocInfo::kInternalReferenceMask =
|
| + 1 << RelocInfo::INTERNAL_REFERENCE |
|
| + 1 << RelocInfo::INTERNAL_REFERENCE_ENCODED;
|
| +const int RelocInfo::kApplyMask =
|
| + RelocInfo::kCodeTargetMask | RelocInfo::kInternalReferenceMask;
|
|
|
|
|
| bool RelocInfo::IsCodedSpecially() {
|
|
|