Commit f2154522 authored by Clemens Backes's avatar Clemens Backes Committed by V8 LUCI CQ

[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/+/3641175Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80477}
parent 0cdea40a
......@@ -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"
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment