| Index: src/arm/assembler-arm.cc
|
| diff --git a/src/arm/assembler-arm.cc b/src/arm/assembler-arm.cc
|
| index b1e664ac26542f91dacc4da12f6121ab4285aaf2..ed83293bf01f2bf4729d3e6f152efbfb9ea4420a 100644
|
| --- a/src/arm/assembler-arm.cc
|
| +++ b/src/arm/assembler-arm.cc
|
| @@ -229,7 +229,9 @@ const char* DwVfpRegister::AllocationIndexToString(int index) {
|
| // Implementation of RelocInfo
|
|
|
| // static
|
| -const int RelocInfo::kApplyMask = 1 << RelocInfo::INTERNAL_REFERENCE;
|
| +const int RelocInfo::kInternalReferenceMask = 1
|
| + << RelocInfo::INTERNAL_REFERENCE;
|
| +const int RelocInfo::kApplyMask = RelocInfo::kInternalReferenceMask;
|
|
|
|
|
| bool RelocInfo::IsCodedSpecially() {
|
|
|