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

Unified Diff: src/compiler/pipeline.cc

Issue 2132403002: [turbofan] Remove dead code from SimplifiedLowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@TurboFan_CheckBounds
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/compiler/simplified-lowering.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/pipeline.cc
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index f2cf50f3f1666d834060d2b46429eb652db5a8f9..bee12a073073f458cb324c8c92db0d304c1fcc69 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -939,12 +939,8 @@ struct RepresentationSelectionPhase {
static const char* phase_name() { return "representation selection"; }
void Run(PipelineData* data, Zone* temp_zone) {
- SimplifiedLowering::Flags flags =
- data->info()->is_type_feedback_enabled()
- ? SimplifiedLowering::kTypeFeedbackEnabled
- : SimplifiedLowering::kNoFlag;
SimplifiedLowering lowering(data->jsgraph(), temp_zone,
- data->source_positions(), flags);
+ data->source_positions());
lowering.LowerAllNodes();
}
};
« no previous file with comments | « no previous file | src/compiler/simplified-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698