Commit 052db704 authored by Clemens Backes's avatar Clemens Backes Committed by Commit Bot

[cleanup] Remove redundant macro list

Just saw this on an unrelated change. This is a left-over from
https://crrev.com/c/2007490.

R=jkummerow@chromium.org

Bug: v8:11384
Change-Id: Iaa6134458e05b58a15ff465b01a86d18bfabd746
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2756528Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#73381}
parent 7e8df34e
...@@ -101,7 +101,7 @@ namespace internal { ...@@ -101,7 +101,7 @@ namespace internal {
// code for the class including allocation and garbage collection routines, // code for the class including allocation and garbage collection routines,
// casts and predicates. All you need to define is the class, methods and // casts and predicates. All you need to define is the class, methods and
// object verification routines. Easy, no? // object verification routines. Easy, no?
#define STRUCT_LIST_GENERATOR_BASE(V, _) \ #define STRUCT_LIST_GENERATOR(V, _) \
V(_, PROMISE_FULFILL_REACTION_JOB_TASK_TYPE, PromiseFulfillReactionJobTask, \ V(_, PROMISE_FULFILL_REACTION_JOB_TASK_TYPE, PromiseFulfillReactionJobTask, \
promise_fulfill_reaction_job_task) \ promise_fulfill_reaction_job_task) \
V(_, PROMISE_REJECT_REACTION_JOB_TASK_TYPE, PromiseRejectReactionJobTask, \ V(_, PROMISE_REJECT_REACTION_JOB_TASK_TYPE, PromiseRejectReactionJobTask, \
...@@ -159,8 +159,6 @@ namespace internal { ...@@ -159,8 +159,6 @@ namespace internal {
IF_WASM(V, _, WASM_JS_FUNCTION_DATA_TYPE, WasmJSFunctionData, \ IF_WASM(V, _, WASM_JS_FUNCTION_DATA_TYPE, WasmJSFunctionData, \
wasm_js_function_data) wasm_js_function_data)
#define STRUCT_LIST_GENERATOR(V, _) STRUCT_LIST_GENERATOR_BASE(V, _)
// Adapts one STRUCT_LIST_GENERATOR entry to the STRUCT_LIST entry // Adapts one STRUCT_LIST_GENERATOR entry to the STRUCT_LIST entry
#define STRUCT_LIST_ADAPTER(V, NAME, Name, name) V(NAME, Name, name) #define STRUCT_LIST_ADAPTER(V, NAME, Name, name) V(NAME, Name, name)
......
...@@ -95,11 +95,7 @@ TEST(Object, StructListOrder) { ...@@ -95,11 +95,7 @@ TEST(Object, StructListOrder) {
<< " vs. current = " << current_type; \ << " vs. current = " << current_type; \
prev = current; prev = current;
// Only test the _BASE portion (the hand-coded part). Note that the values are STRUCT_LIST_GENERATOR(STRUCT_LIST_ADAPTER, TEST_STRUCT)
// not necessarily consecutive because some Structs that need special
// handling, such as those that have multiple Map instances associated, are
// omitted from this list.
STRUCT_LIST_GENERATOR_BASE(STRUCT_LIST_ADAPTER, TEST_STRUCT)
#undef TEST_STRUCT #undef TEST_STRUCT
} }
......
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