[compiler-rt] 1928401 - [NFC][msan] Clang-format some includes

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 13 14:47:43 PST 2023


Author: Vitaly Buka
Date: 2023-12-13T14:46:08-08:00
New Revision: 192840113a84ea2b062a77bbdf4aa0de1cabf80f

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

LOG: [NFC][msan] Clang-format some includes

Added: 
    

Modified: 
    compiler-rt/lib/msan/msan_linux.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/msan/msan_linux.cpp b/compiler-rt/lib/msan/msan_linux.cpp
index bced00ba242822..87a42affd237f4 100644
--- a/compiler-rt/lib/msan/msan_linux.cpp
+++ b/compiler-rt/lib/msan/msan_linux.cpp
@@ -14,23 +14,22 @@
 #include "sanitizer_common/sanitizer_platform.h"
 #if SANITIZER_FREEBSD || SANITIZER_LINUX || SANITIZER_NETBSD
 
-#include "msan.h"
-#include "msan_report.h"
-#include "msan_thread.h"
-
-#include <elf.h>
-#include <link.h>
-#include <pthread.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <signal.h>
-#include <unistd.h>
-#include <unwind.h>
-#include <sys/time.h>
-#include <sys/resource.h>
-
-#include "sanitizer_common/sanitizer_common.h"
-#include "sanitizer_common/sanitizer_procmaps.h"
+#  include <elf.h>
+#  include <link.h>
+#  include <pthread.h>
+#  include <signal.h>
+#  include <stdio.h>
+#  include <stdlib.h>
+#  include <sys/resource.h>
+#  include <sys/time.h>
+#  include <unistd.h>
+#  include <unwind.h>
+
+#  include "msan.h"
+#  include "msan_report.h"
+#  include "msan_thread.h"
+#  include "sanitizer_common/sanitizer_common.h"
+#  include "sanitizer_common/sanitizer_procmaps.h"
 
 namespace __msan {
 


        


More information about the llvm-commits mailing list