Skip to content

Commit

Permalink
Correct ifdef for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
rhuanjl committed Jun 14, 2024
1 parent 3a7b120 commit cdaec41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Runtime/Base/Constants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const char16 Constants::StringMatch[] = _u("String.prototype.match");
const uint64 Constants::ExponentMask = 0x3FF0000000000000;
const uint64 Constants::MantissaMask = 0x000FFFFFFFFFFFFF;

#ifdef _M_AMD64
#ifdef TARGET_64
const size_t Constants::StackLimitForScriptInterrupt = 0x7fffffffffffffff;
#else
const size_t Constants::StackLimitForScriptInterrupt = 0x7fffffff;
Expand Down

0 comments on commit cdaec41

Please sign in to comment.