| Index: src/ia32/assembler-ia32.cc
|
| diff --git a/src/ia32/assembler-ia32.cc b/src/ia32/assembler-ia32.cc
|
| index 05d1bdd4f2178c73885a431aa5142ec276469d22..ba03ad993e2c55618812c14026bb72b37db49739 100644
|
| --- a/src/ia32/assembler-ia32.cc
|
| +++ b/src/ia32/assembler-ia32.cc
|
| @@ -159,9 +159,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;
|
|
|
|
|
|
|