From ced9fede02b64718ae4fa954bf7d22c3b968d809 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Fri, 25 Oct 2013 11:17:54 +0000 Subject: [PATCH] [msan] Separate access and origin blocks in msan reports with an extra whiteline. llvm-svn: 193401 --- compiler-rt/lib/msan/msan_report.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/lib/msan/msan_report.cc b/compiler-rt/lib/msan/msan_report.cc index 7b5a914fac2b..575cfc2217dd 100644 --- a/compiler-rt/lib/msan/msan_report.cc +++ b/compiler-rt/lib/msan/msan_report.cc @@ -41,6 +41,7 @@ static void PrintStack(const uptr *trace, uptr size) { static void DescribeOrigin(u32 origin) { Decorator d; + Printf("\n"); if (common_flags()->verbosity) Printf(" raw origin id: %d\n", origin); uptr pc; -- GitLab