Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: src/objects-inl.h

Issue 2145413002: [builtins] unify builtins list. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix typos Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/external-reference-table.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « src/external-reference-table.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698