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

Unified Diff: src/compiler.cc

Issue 2176143002: Remove the --ignition-generators flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler.cc
diff --git a/src/compiler.cc b/src/compiler.cc
index 7330b40f19b75eed97bb5fd1fa2e8a9268050e2a..aada244f7fad8f09c7e8a772a45afaced9858dba 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -450,11 +450,6 @@ bool ShouldUseIgnition(CompilationInfo* info) {
return info->shared_info()->HasBytecodeArray();
}
- // For generator or async functions we might avoid Ignition wholesale.
- if (info->shared_info()->is_resumable() && !FLAG_ignition_generators) {
- return false;
- }
-
// Since we can't OSR from Ignition, skip Ignition for asm.js functions.
if (info->shared_info()->asm_function()) {
return false;
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698