summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/node.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/node.cc')
-rw-r--r--deps/v8/src/compiler/node.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/compiler/node.cc b/deps/v8/src/compiler/node.cc
index ededcc4806..f988b954fb 100644
--- a/deps/v8/src/compiler/node.cc
+++ b/deps/v8/src/compiler/node.cc
@@ -60,8 +60,8 @@ Node* Node::New(Zone* zone, NodeId id, const Operator* op, int input_count,
// Verify that none of the inputs are {nullptr}.
for (int i = 0; i < input_count; i++) {
if (inputs[i] == nullptr) {
- V8_Fatal(__FILE__, __LINE__, "Node::New() Error: #%d:%s[%d] is nullptr",
- static_cast<int>(id), op->mnemonic(), i);
+ FATAL("Node::New() Error: #%d:%s[%d] is nullptr", static_cast<int>(id),
+ op->mnemonic(), i);
}
}
#endif