| Index: src/compiler/simplified-lowering.cc
|
| diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc
|
| index 1fe977a7b23732e0cbb301f69f30409cd8f6b7a0..58c0bf02a4082188df13d40d47320eac9c417418 100644
|
| --- a/src/compiler/simplified-lowering.cc
|
| +++ b/src/compiler/simplified-lowering.cc
|
| @@ -569,10 +569,9 @@ class RepresentationSelector {
|
| void Run(SimplifiedLowering* lowering) {
|
| RunTruncationPropagationPhase();
|
|
|
| - if (lowering->flags() & SimplifiedLowering::kTypeFeedbackEnabled) {
|
| - ResetNodeInfoState();
|
| - RunTypePropagationPhase();
|
| - }
|
| + // Run type propagation.
|
| + ResetNodeInfoState();
|
| + RunTypePropagationPhase();
|
|
|
| // Run lowering and change insertion phase.
|
| TRACE("--{Simplified lowering phase}--\n");
|
|
|