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

Unified Diff: src/isolate.h

Issue 1842763002: [api] Add a switch that controls if ES2015 tail call elimination feature is enabled or not. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@tco-dynamic
Patch Set: Added workaround and TODO to investigate TurboFan issue. Created 4 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
« no previous file with comments | « src/compiler/bytecode-graph-builder.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 1ebaa28a76022352a799019e89d1cf2eed0498d1..a91ec93187def11a2f18a31f86e9f0ef893e3e4d 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -1096,9 +1096,7 @@ class Isolate {
bool is_tail_call_elimination_enabled() const {
return is_tail_call_elimination_enabled_;
}
- void set_tail_call_elimination_enabled(bool enabled) {
- is_tail_call_elimination_enabled_ = enabled;
- }
+ void SetTailCallEliminationEnabled(bool enabled);
void AddDetachedContext(Handle<Context> context);
void CheckDetachedContextsAfterGC();
« no previous file with comments | « src/compiler/bytecode-graph-builder.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698