[compiler-rt] 13371e2 - [compiler-rt][UBSan][NFC] Reorder includes in ubsan_diag.cpp (#195435)

via llvm-commits llvm-commits at lists.llvm.org
Sat May 2 13:46:40 PDT 2026


Author: Kleis Auke Wolthuizen
Date: 2026-05-02T13:46:35-07:00
New Revision: 13371e24812609de8dc65cd9fd36461037fb1581

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

LOG: [compiler-rt][UBSan][NFC] Reorder includes in ubsan_diag.cpp (#195435)

Added: 
    

Modified: 
    compiler-rt/lib/ubsan/ubsan_diag.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/ubsan/ubsan_diag.cpp b/compiler-rt/lib/ubsan/ubsan_diag.cpp
index 2146ed3c27287..d883fe7d8f681 100644
--- a/compiler-rt/lib/ubsan/ubsan_diag.cpp
+++ b/compiler-rt/lib/ubsan/ubsan_diag.cpp
@@ -13,15 +13,17 @@
 #include "ubsan_platform.h"
 #if CAN_SANITIZE_UB
 #include "ubsan_diag.h"
-#include "ubsan_init.h"
 #include "ubsan_flags.h"
+#include "ubsan_init.h"
 #include "ubsan_monitor.h"
+
 #include "sanitizer_common/sanitizer_placement_new.h"
 #include "sanitizer_common/sanitizer_report_decorator.h"
 #include "sanitizer_common/sanitizer_stacktrace.h"
 #include "sanitizer_common/sanitizer_stacktrace_printer.h"
 #include "sanitizer_common/sanitizer_suppressions.h"
 #include "sanitizer_common/sanitizer_symbolizer.h"
+
 #include <stdio.h>
 
 using namespace __ubsan;


        


More information about the llvm-commits mailing list