| Index: src/x87/assembler-x87.cc
|
| diff --git a/src/x87/assembler-x87.cc b/src/x87/assembler-x87.cc
|
| index 95b65879256890e4399177a1522cba1d10014df8..c03a9f5c95a6aa7e0f18dcab74451f0988682db5 100644
|
| --- a/src/x87/assembler-x87.cc
|
| +++ b/src/x87/assembler-x87.cc
|
| @@ -82,9 +82,11 @@ void Displacement::init(Label* L, Type type) {
|
| // Implementation of RelocInfo
|
|
|
|
|
| +const int RelocInfo::kInternalReferenceMask = 1
|
| + << RelocInfo::INTERNAL_REFERENCE;
|
| const int RelocInfo::kApplyMask =
|
| - RelocInfo::kCodeTargetMask | 1 << RelocInfo::RUNTIME_ENTRY |
|
| - 1 << RelocInfo::JS_RETURN | 1 << RelocInfo::INTERNAL_REFERENCE |
|
| + RelocInfo::kCodeTargetMask | RelocInfo::kInternalReferenceMask |
|
| + 1 << RelocInfo::RUNTIME_ENTRY | 1 << RelocInfo::JS_RETURN |
|
| 1 << RelocInfo::DEBUG_BREAK_SLOT | 1 << RelocInfo::CODE_AGE_SEQUENCE;
|
|
|
|
|
|
|