[compiler-rt] 90f244c - [hwasan] Add missing newline in report.

Florian Mayer via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 30 07:48:57 PDT 2021


Author: Florian Mayer
Date: 2021-06-30T15:48:45+01:00
New Revision: 90f244c8432357337a12b2582b20e2aedeb3e742

URL: https://github.com/llvm/llvm-project/commit/90f244c8432357337a12b2582b20e2aedeb3e742
DIFF: https://github.com/llvm/llvm-project/commit/90f244c8432357337a12b2582b20e2aedeb3e742.diff

LOG: [hwasan] Add missing newline in report.

Reviewed By: glider

Differential Revision: https://reviews.llvm.org/D105190

Added: 
    

Modified: 
    compiler-rt/lib/hwasan/hwasan_report.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/hwasan/hwasan_report.cpp b/compiler-rt/lib/hwasan/hwasan_report.cpp
index 00a78193e3a3..d4d836bd4894 100644
--- a/compiler-rt/lib/hwasan/hwasan_report.cpp
+++ b/compiler-rt/lib/hwasan/hwasan_report.cpp
@@ -485,7 +485,7 @@ void PrintAddressDescription(
   if (num_descriptions_printed > 1) {
     Printf(
         "There are %d potential causes, printed above in order "
-        "of likeliness.",
+        "of likeliness.\n",
         num_descriptions_printed);
   }
 }


        


More information about the llvm-commits mailing list