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

Unified Diff: src/typing-asm.cc

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/source-position.h ('k') | test/cctest/test-ast.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/typing-asm.cc
diff --git a/src/typing-asm.cc b/src/typing-asm.cc
index db1f8bdb60e39ebaa72ef630ce7faf70ec760e9a..4b681418d7b3f6c0826a4d3ee3fee87cd6a1365e 100644
--- a/src/typing-asm.cc
+++ b/src/typing-asm.cc
@@ -19,7 +19,7 @@ namespace internal {
#define FAIL(node, msg) \
do { \
valid_ = false; \
- int line = node->position() == RelocInfo::kNoPosition \
+ int line = node->position() == kNoSourcePosition \
? -1 \
: script_->GetLineNumber(node->position()); \
base::OS::SNPrintF(error_message_, sizeof(error_message_), \
@@ -27,7 +27,6 @@ namespace internal {
return; \
} while (false)
-
#define RECURSE(call) \
do { \
DCHECK(!HasStackOverflow()); \
« no previous file with comments | « src/source-position.h ('k') | test/cctest/test-ast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698