| Index: src/interpreter/interpreter-assembler.cc | 
| diff --git a/src/interpreter/interpreter-assembler.cc b/src/interpreter/interpreter-assembler.cc | 
| index 1e2fe88eb52dea6138d3e559f1a26ab414eda929..59b4d8ff7cab117f667bbfdc2cc56d469d642888 100644 | 
| --- a/src/interpreter/interpreter-assembler.cc | 
| +++ b/src/interpreter/interpreter-assembler.cc | 
| @@ -1159,8 +1159,9 @@ Node* InterpreterAssembler::TruncateTaggedToWord32WithFeedback( | 
| // We do not require an Or with earlier feedback here because once we | 
| // convert the value to a number, we cannot reach this path. We can | 
| // only reach this path on the first pass when the feedback is kNone. | 
| -        Assert(Word32Equal(var_type_feedback->value(), | 
| -                           Int32Constant(BinaryOperationFeedback::kNone))); | 
| +        CSA_ASSERT(this, | 
| +                   Word32Equal(var_type_feedback->value(), | 
| +                               Int32Constant(BinaryOperationFeedback::kNone))); | 
|  | 
| Label if_valueisoddball(this), | 
| if_valueisnotoddball(this, Label::kDeferred); | 
|  |