Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index f5d42f6854a8468866e993d6ad4180655577a05c..0f7660a71a295e820c9073ef0c6fff457ac930bc 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -5172,8 +5172,8 @@ bool Code::is_inline_cache_stub() { |
bool Code::is_debug_stub() { |
if (kind() != BUILTIN) return false; |
switch (builtin_index()) { |
-#define CASE_DEBUG_BUILTIN(name, kind, extra) case Builtins::k##name: |
- BUILTIN_LIST_DEBUG_A(CASE_DEBUG_BUILTIN) |
+#define CASE_DEBUG_BUILTIN(name) case Builtins::k##name: |
+ BUILTIN_LIST_DBG(CASE_DEBUG_BUILTIN) |
#undef CASE_DEBUG_BUILTIN |
return true; |
default: |