[cleanup] Remove two unused TRACE_BS macros

BS for "backing store", obviously.

R=ahaas@chromium.org

Bug: v8:12425
Change-Id: I310ba8e34e8ca2c7b7bdeec5f1bc184330fbaf28
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3641175
Reviewed-by: Andreas Haas <ahaas@chromium.org>
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80477}
This commit is contained in:
Clemens Backes 2022-05-11 15:33:40 +02:00 committed by V8 LUCI CQ
parent 0cdea40a1c
commit f215452211
2 changed files with 0 additions and 12 deletions

View File

@ -165,11 +165,6 @@
// Has to be the last include (doesn't have include guards):
#include "src/api/api-macros.h"
#define TRACE_BS(...) \
do { \
if (i::FLAG_trace_backing_store) PrintF(__VA_ARGS__); \
} while (false)
namespace v8 {
// TODO(chromium:1323177): Add a separate global for OOMErrorCallback once the
@ -10775,5 +10770,4 @@ TryToCopyAndConvertArrayToCppBuffer<CTypeInfoBuilder<double>::Build().GetId(),
} // namespace v8
#undef TRACE_BS
#include "src/api/api-macros-undef.h"

View File

@ -102,11 +102,6 @@
#define CHECK(condition) assert(condition)
#endif
#define TRACE_BS(...) \
do { \
if (i::FLAG_trace_backing_store) PrintF(__VA_ARGS__); \
} while (false)
namespace v8 {
namespace {
@ -5722,4 +5717,3 @@ int main(int argc, char* argv[]) { return v8::Shell::Main(argc, argv); }
#undef CHECK
#undef DCHECK
#undef TRACE_BS