From 68571f91515b8467723322ece8da3ea2d00c7596 Mon Sep 17 00:00:00 2001 From: Mircea Trofin Date: Thu, 27 Mar 2025 22:15:13 -0700 Subject: [PATCH] Revert "[compiler-rt][nfc] DenseMap needs placement new (#133329)" This reverts commit 4485e25dd2a57be1ee504b4dd863a1e140f5084c. Buildbot failures, e.g. https://lab.llvm.org/buildbot/#/builders/66/builds/11827 --- compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h b/compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h index a704997e3a9b..c63788653de7 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h +++ b/compiler-rt/lib/sanitizer_common/sanitizer_dense_map.h @@ -19,9 +19,6 @@ #include "sanitizer_common.h" #include "sanitizer_dense_map_info.h" #include "sanitizer_internal_defs.h" -// Placement-new is needed for bucket allocation. This avoids needing to include -// it everywhere we use DenseMap. -#include "sanitizer_placement_new.h" #include "sanitizer_type_traits.h" namespace __sanitizer {