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

Unified Diff: src/isolate.cc

Issue 2777203007: [builtins] Introduce new TFC macro and auto-generate TFS descriptors (Closed)
Patch Set: Format Created 3 years, 9 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
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index 6d59ad4499911aacf4f4cae59ce4e00909040f41..9c98fddaa18692b0d7eb97f708cfd2912de7f18e 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -2715,8 +2715,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

Powered by Google App Engine
This is Rietveld 408576698