| 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()); \
|
|
|