Index: src/prettyprinter.cc |
diff --git a/src/prettyprinter.cc b/src/prettyprinter.cc |
index bf28cc6378749a94217a0949bd04da43a01fc11b..c5ac881be298805f18baa9bc40f498492b327e2f 100644 |
--- a/src/prettyprinter.cc |
+++ b/src/prettyprinter.cc |
@@ -800,8 +800,7 @@ void PrettyPrinter::VisitCallNew(CallNew* node) { |
void PrettyPrinter::VisitCallRuntime(CallRuntime* node) { |
- Print("%%"); |
- PrintLiteral(node->name(), false); |
+ Print("%%%s\n", node->debug_name()); |
PrintArguments(node->arguments()); |
} |
@@ -1533,9 +1532,8 @@ void AstPrinter::VisitCallNew(CallNew* node) { |
void AstPrinter::VisitCallRuntime(CallRuntime* node) { |
EmbeddedVector<char, 128> buf; |
- FormatICSlotNode(&buf, node, "CALL RUNTIME", node->CallRuntimeFeedbackSlot()); |
IndentedScope indent(this, buf.start()); |
- PrintLiteralIndented("NAME", node->name(), false); |
+ Print("NAME %s\n", node->debug_name()); |
PrintArguments(node->arguments()); |
} |