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 9b36ce8 commit 062b4d9Copy full SHA for 062b4d9
lib/Runtime/Library/JavascriptArray.cpp
@@ -1499,13 +1499,11 @@ using namespace Js;
1499
1500
bool isTaggedInt = TaggedInt::Is(item);
1501
bool isTaggedIntMissingValue = false;
1502
-#ifdef TARGET_64
1503
if (isTaggedInt)
1504
{
1505
int32 iValue = TaggedInt::ToInt32(item);
1506
isTaggedIntMissingValue = Js::SparseArraySegment<int32>::IsMissingItem(&iValue);
1507
}
1508
-#endif
1509
if (isTaggedInt && !isTaggedIntMissingValue)
1510
1511
// This is taggedInt case and we verified that item is not missing value in AMD64.
0 commit comments