[compiler-rt] c07b617 - [NFC][sanitizer] Clang-format a file

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 26 10:58:21 PDT 2023


Author: Vitaly Buka
Date: 2023-09-26T10:58:08-07:00
New Revision: c07b617c240da5b676681ea4f52cd609395cfccb

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

LOG: [NFC][sanitizer] Clang-format a file

Added: 
    

Modified: 
    compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp b/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
index f6dac78337068b5..0aa7368f5ea42eb 100644
--- a/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
+++ b/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cpp
@@ -53,8 +53,7 @@ static llvm::symbolize::ErrorHandler symbolize_error_handler(
 }
 
 namespace __sanitizer {
-int internal_snprintf(char *buffer, uintptr_t length, const char *format,
-                      ...);
+int internal_snprintf(char *buffer, uintptr_t length, const char *format, ...);
 }  // namespace __sanitizer
 
 extern "C" {
@@ -117,7 +116,7 @@ void __sanitizer_symbolize_flush() {
 }
 
 bool __sanitizer_symbolize_demangle(const char *Name, char *Buffer,
-                                   int MaxLength) {
+                                    int MaxLength) {
   std::string Result;
   if (!llvm::nonMicrosoftDemangle(Name, Result))
     return false;


        


More information about the llvm-commits mailing list