Index: src/compiler/js-type-hint-lowering.cc |
diff --git a/src/compiler/js-type-hint-lowering.cc b/src/compiler/js-type-hint-lowering.cc |
index b1ce30521351dfc276aa7df05f468aabf66b27c9..b1fd40097997b40dde296a8e40936761118752a3 100644 |
--- a/src/compiler/js-type-hint-lowering.cc |
+++ b/src/compiler/js-type-hint-lowering.cc |
@@ -25,6 +25,9 @@ bool BinaryOperationHintToNumberOperationHint( |
case BinaryOperationHint::kSigned32: |
*number_hint = NumberOperationHint::kSigned32; |
return true; |
+ case BinaryOperationHint::kNumber: |
+ *number_hint = NumberOperationHint::kNumber; |
+ return true; |
case BinaryOperationHint::kNumberOrOddball: |
*number_hint = NumberOperationHint::kNumberOrOddball; |
return true; |