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.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/deps/v8/src/compiler/node.cc b/deps/v8/src/compiler/node.cc
index 50cfdf6248..7688379e9f 100644
--- a/deps/v8/src/compiler/node.cc
+++ b/deps/v8/src/compiler/node.cc
@@ -303,7 +303,13 @@ void Node::Print() const {
void Node::Print(std::ostream& os) const {
os << *this << std::endl;
for (Node* input : this->inputs()) {
- os << " " << *input << std::endl;
+ os << " ";
+ if (input) {
+ os << *input;
+ } else {
+ os << "(NULL)";
+ }
+ os << std::endl;
}
}