We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d388ce commit a2df831Copy full SHA for a2df831
chromium/v8/src/compiler/type-cache.h
@@ -80,7 +80,7 @@ class V8_EXPORT_PRIVATE TypeCache final {
80
Type::Union(kPositiveIntegerOrMinusZero, Type::NaN(), zone());
81
82
Type const kAdditiveSafeInteger =
83
- CreateRange(-4503599627370496.0, 4503599627370496.0);
+ CreateRange(-4503599627370495.0, 4503599627370495.0);
84
Type const kSafeInteger = CreateRange(-kMaxSafeInteger, kMaxSafeInteger);
85
Type const kAdditiveSafeIntegerOrMinusZero =
86
Type::Union(kAdditiveSafeInteger, Type::MinusZero(), zone());
0 commit comments