| Index: src/mips64/assembler-mips64.cc
|
| diff --git a/src/mips64/assembler-mips64.cc b/src/mips64/assembler-mips64.cc
|
| index 8a20f26c19992b00dafd967850ca80437f300231..75fd26cf03c5f971550270f1888098708925cd80 100644
|
| --- a/src/mips64/assembler-mips64.cc
|
| +++ b/src/mips64/assembler-mips64.cc
|
| @@ -173,9 +173,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() {
|
|
|