[compiler-rt] r252735 - Fixing #include order in tsan_new_delete.cc. Follow-up commit for r252284.

Kuba Brecka via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 11 07:15:16 PST 2015


Author: kuba.brecka
Date: Wed Nov 11 09:15:14 2015
New Revision: 252735

URL: http://llvm.org/viewvc/llvm-project?rev=252735&view=rev
Log:
Fixing #include order in tsan_new_delete.cc. Follow-up commit for r252284.


Modified:
    compiler-rt/trunk/lib/tsan/rtl/tsan_new_delete.cc

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_new_delete.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_new_delete.cc?rev=252735&r1=252734&r2=252735&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_new_delete.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_new_delete.cc Wed Nov 11 09:15:14 2015
@@ -11,8 +11,8 @@
 //
 // Interceptors for operators new and delete.
 //===----------------------------------------------------------------------===//
-#include "sanitizer_common/sanitizer_internal_defs.h"
 #include "interception/interception.h"
+#include "sanitizer_common/sanitizer_internal_defs.h"
 #include "tsan_interceptors.h"
 
 using namespace __tsan;  // NOLINT




More information about the llvm-commits mailing list