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

Unified Diff: src/isolate.cc

Issue 2777203007: [builtins] Introduce new TFC macro and auto-generate TFS descriptors (Closed)
Patch Set: Rebase Created 3 years, 8 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/interface-descriptors.cc ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index 30957deb7805be35eecd6a98a52ee7951e94ad2d..c2674baa1875973405f1a17f0fb06598a3916c92 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -2709,8 +2709,8 @@ bool Isolate::Init(Deserializer* des) {
code_aging_helper_ = new CodeAgingHelper(this);
// Initialize the interface descriptors ahead of time.
-#define INTERFACE_DESCRIPTOR(V) \
- { V##Descriptor(this); }
+#define INTERFACE_DESCRIPTOR(Name, ...) \
+ { Name##Descriptor(this); }
INTERFACE_DESCRIPTOR_LIST(INTERFACE_DESCRIPTOR)
#undef INTERFACE_DESCRIPTOR
« no previous file with comments | « src/interface-descriptors.cc ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698