[compiler-rt] 19ced81 - [NFC][ASAN] Sort includes
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Mon May 8 00:53:36 PDT 2023
Author: Vitaly Buka
Date: 2023-05-08T00:53:18-07:00
New Revision: 19ced818772d4b1146785b8880cd39d958c4337b
URL: https://github.com/llvm/llvm-project/commit/19ced818772d4b1146785b8880cd39d958c4337b
DIFF: https://github.com/llvm/llvm-project/commit/19ced818772d4b1146785b8880cd39d958c4337b.diff
LOG: [NFC][ASAN] Sort includes
Added:
Modified:
compiler-rt/lib/asan/asan_interceptors.cpp
compiler-rt/lib/asan/asan_thread.h
Removed:
################################################################################
diff --git a/compiler-rt/lib/asan/asan_interceptors.cpp b/compiler-rt/lib/asan/asan_interceptors.cpp
index 774f06779726..2df596ed7fe1 100644
--- a/compiler-rt/lib/asan/asan_interceptors.cpp
+++ b/compiler-rt/lib/asan/asan_interceptors.cpp
@@ -12,6 +12,7 @@
//===----------------------------------------------------------------------===//
#include "asan_interceptors.h"
+
#include "asan_allocator.h"
#include "asan_internal.h"
#include "asan_mapping.h"
@@ -20,6 +21,7 @@
#include "asan_stack.h"
#include "asan_stats.h"
#include "asan_suppressions.h"
+#include "asan_thread.h"
#include "lsan/lsan_common.h"
#include "sanitizer_common/sanitizer_libc.h"
diff --git a/compiler-rt/lib/asan/asan_thread.h b/compiler-rt/lib/asan/asan_thread.h
index ec2a131f5dcf..dff1a0fd85d5 100644
--- a/compiler-rt/lib/asan/asan_thread.h
+++ b/compiler-rt/lib/asan/asan_thread.h
@@ -15,8 +15,8 @@
#define ASAN_THREAD_H
#include "asan_allocator.h"
-#include "asan_internal.h"
#include "asan_fake_stack.h"
+#include "asan_internal.h"
#include "asan_stats.h"
#include "sanitizer_common/sanitizer_common.h"
#include "sanitizer_common/sanitizer_libc.h"
More information about the llvm-commits
mailing list