summaryrefslogtreecommitdiff
path: root/lib/msan/msan_report.cc
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2013-10-28 13:05:32 +0000
committerDmitry Vyukov <dvyukov@google.com>2013-10-28 13:05:32 +0000
commitdb92faf488988543b18aaac537ac5ee4f4ee68a5 (patch)
tree016afe98bea2c4f255819fabc3fe8e9ba0737ce6 /lib/msan/msan_report.cc
parent58dc8bef3f86f4f8503359b5146be9d78d7e3ef0 (diff)
asan/msan: separate different report blocks with new lines
this makes the reports consistent with tsan, and much more readable. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@193520 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/msan/msan_report.cc')
-rw-r--r--lib/msan/msan_report.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msan/msan_report.cc b/lib/msan/msan_report.cc
index 354bc80b7..c07650160 100644
--- a/lib/msan/msan_report.cc
+++ b/lib/msan/msan_report.cc
@@ -37,11 +37,11 @@ class Decorator: private __sanitizer::AnsiColorDecorator {
static void PrintStack(const uptr *trace, uptr size) {
SymbolizerScope sym_scope;
StackTrace::PrintStack(trace, size, true, 0);
+ Printf("\n");
}
static void DescribeOrigin(u32 origin) {
Decorator d;
- Printf("\n");
if (common_flags()->verbosity)
Printf(" raw origin id: %d\n", origin);
uptr pc;