Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(438)

Unified Diff: src/ia32/assembler-ia32.cc

Issue 986553005: Contribution of PowerPC port (continuation of 422063005) - serialize.cc cleanup (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698