[compiler-rt] 4126b08 - [NFC][sanitizer] Format a part of the file

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 22 21:26:02 PST 2021


Author: Vitaly Buka
Date: 2021-12-22T21:25:51-08:00
New Revision: 4126b0866213c614608e892a2fe71a714f313ff2

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

LOG: [NFC][sanitizer] Format a part of the file

Added: 
    

Modified: 
    compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
index 03f5cfbb7eac9..79687ca5f72de 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
@@ -274,9 +274,8 @@ class LLVMSymbolizerProcess final : public SymbolizerProcess {
     const char* const kSymbolizerArch = "--default-arch=unknown";
 #endif
 
-    const char *const inline_flag = common_flags()->symbolize_inline_frames
-                                        ? "--inlines"
-                                        : "--no-inlines";
+    const char *const inline_flag =
+        common_flags()->symbolize_inline_frames ? "--inlines" : "--no-inlines";
     int i = 0;
     argv[i++] = path_to_binary;
     argv[i++] = inline_flag;


        


More information about the llvm-commits mailing list