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

Unified Diff: src/ast/ast-numbering.cc

Issue 2155243006: [turbofan] Remove obsolete --turbo-shipping 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/ast/ast-numbering.cc
diff --git a/src/ast/ast-numbering.cc b/src/ast/ast-numbering.cc
index 1be5940adc38654356e1e61bdec91dedf0ef7a36..5fea93331243a9e62808c549fec0d34344c1d9a0 100644
--- a/src/ast/ast-numbering.cc
+++ b/src/ast/ast-numbering.cc
@@ -56,12 +56,7 @@ class AstNumberingVisitor final : public AstVisitor<AstNumberingVisitor> {
DisableSelfOptimization();
}
void DisableCrankshaft(BailoutReason reason) {
- if (FLAG_turbo_shipping) {
- properties_.flags() |= AstProperties::kDontCrankshaft;
- } else {
- dont_optimize_reason_ = reason;
- DisableSelfOptimization();
- }
+ properties_.flags() |= AstProperties::kDontCrankshaft;
}
template <typename Node>
« 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