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

Unified Diff: src/ast/prettyprinter.cc

Issue 2587973002: Revert of [crankshaft] Fix IsClassOfTest helper method (Closed)
Patch Set: Created 4 years 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/ast/ast.cc ('k') | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/prettyprinter.cc
diff --git a/src/ast/prettyprinter.cc b/src/ast/prettyprinter.cc
index 72ed5ff50ccb5303888c10433661b6e0858b6e91..59690a856b17d20284263552ce29143c4aea8f54 100644
--- a/src/ast/prettyprinter.cc
+++ b/src/ast/prettyprinter.cc
@@ -1142,13 +1142,7 @@
void AstPrinter::VisitCallRuntime(CallRuntime* node) {
EmbeddedVector<char, 128> buf;
- if (node->is_jsruntime()) {
- SNPrintF(buf, "CALL RUNTIME %s code = %p", node->debug_name(),
- isolate_->context()->get(node->context_index()));
- } else {
- SNPrintF(buf, "CALL RUNTIME %s", node->debug_name());
- }
-
+ SNPrintF(buf, "CALL RUNTIME %s", node->debug_name());
IndentedScope indent(this, buf.start(), node->position());
PrintArguments(node->arguments());
}
« no previous file with comments | « src/ast/ast.cc ('k') | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698