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

Unified Diff: src/compiler/source-position.h

Issue 2109773004: Move RelocInfo::kNoPosition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@removedead
Patch Set: rebase Created 4 years, 6 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
« no previous file with comments | « src/compiler.cc ('k') | src/crankshaft/hydrogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/source-position.h
diff --git a/src/compiler/source-position.h b/src/compiler/source-position.h
index 912f18829f4fe7688ac52f4bba9366e3cfcb85eb..d4df7835efc230a722dcab6e52dd8e109900ab0b 100644
--- a/src/compiler/source-position.h
+++ b/src/compiler/source-position.h
@@ -5,8 +5,8 @@
#ifndef V8_COMPILER_SOURCE_POSITION_H_
#define V8_COMPILER_SOURCE_POSITION_H_
-#include "src/assembler.h"
#include "src/compiler/node-aux-data.h"
+#include "src/globals.h"
namespace v8 {
namespace internal {
@@ -25,7 +25,7 @@ class SourcePosition final {
int raw() const { return raw_; }
private:
- static const int kUnknownPosition = RelocInfo::kNoPosition;
+ static const int kUnknownPosition = kNoSourcePosition;
int raw_;
};
« no previous file with comments | « src/compiler.cc ('k') | src/crankshaft/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698