Chromium Code Reviews| Index: src/frames.cc |
| diff --git a/src/frames.cc b/src/frames.cc |
| index f3cda57652c3e5c8d68d36ae05a1da0a5abdaf52..efb61b2b43ae3c15da60de0e33a61ac7e349b3b6 100644 |
| --- a/src/frames.cc |
| +++ b/src/frames.cc |
| @@ -1067,8 +1067,7 @@ int JavaScriptFrame::ComputeParametersCount() const { |
| namespace { |
| bool CannotDeoptFromAsmCode(Code* code, JSFunction* function) { |
| - return code->is_turbofanned() && function->shared()->asm_function() && |
| - !FLAG_turbo_asm_deoptimization; |
| + return code->is_turbofanned() && function->shared()->asm_function(); |
| } |
| } // namespace |