[llvm-commits] [compiler-rt] r168496 - /compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc
Dmitry Vyukov
dvyukov at google.com
Thu Nov 22 05:38:28 PST 2012
Author: dvyukov
Date: Thu Nov 22 07:38:28 2012
New Revision: 168496
URL: http://llvm.org/viewvc/llvm-project?rev=168496&view=rev
Log:
tsan: add missing \n in report
Modified:
compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc
Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc?rev=168496&r1=168495&r2=168496&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc Thu Nov 22 07:38:28 2012
@@ -51,7 +51,7 @@
void PrintStack(const ReportStack *ent) {
if (ent == 0) {
- Printf(" [failed to restore the stack]\n");
+ Printf(" [failed to restore the stack]\n\n");
return;
}
for (int i = 0; ent; ent = ent->next, i++) {
More information about the llvm-commits
mailing list