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

Unified Diff: src/codegen.cc

Issue 1415253006: Add linebreaks to --trace-codegen output. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/codegen.cc
diff --git a/src/codegen.cc b/src/codegen.cc
index eaafdfc327bfd021c37a0b56eab4c6455b70c752..1e806d2ae53da0391061b8c19f12443af0902ebf 100644
--- a/src/codegen.cc
+++ b/src/codegen.cc
@@ -122,7 +122,8 @@ void CodeGenerator::MakeCodePrologue(CompilationInfo* info, const char* kind) {
if (FLAG_trace_codegen || print_source || print_ast) {
base::SmartArrayPointer<char> name = info->GetDebugName();
- PrintF("[generating %s code for %s function: %s]", kind, ftype, name.get());
+ PrintF("[generating %s code for %s function: %s]\n", kind, ftype,
+ name.get());
}
#ifdef DEBUG
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698