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

Unified Diff: src/v8.cc

Issue 2660103002: Fix --noopt to not optimize (Closed)
Patch Set: updates Created 3 years, 11 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/isolate.cc ('k') | test/mjsunit/noopt.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/v8.cc
diff --git a/src/v8.cc b/src/v8.cc
index 7f0230aa4caff3adfe78fe18f56405b380741a07..7fd8dc093041c4ab369314fe083c2dc0de9a0e65 100644
--- a/src/v8.cc
+++ b/src/v8.cc
@@ -66,7 +66,7 @@ void V8::InitializeOncePerProcessImpl() {
FLAG_max_semi_space_size = 1;
}
- if (FLAG_turbo && strcmp(FLAG_turbo_filter, "~~") == 0) {
+ if (FLAG_opt && FLAG_turbo && strcmp(FLAG_turbo_filter, "~~") == 0) {
Michael Starzinger 2017/01/30 09:27:53 suggestion: Igor made --turbo imply --crankshaft,
jochen (gone - plz use gerrit) 2017/01/30 14:08:43 that would mean that if we set --turbo via finch,
const char* filter_flag = "--turbo-filter=*";
FlagList::SetFlagsFromString(filter_flag, StrLength(filter_flag));
}
« no previous file with comments | « src/isolate.cc ('k') | test/mjsunit/noopt.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698