Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion stl/inc/__msvc_int128.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,12 @@ struct alignas(16) _Base128 {
if (!_Is_constant_evaluated()) {
return _umul128(_Left, _Right, &_High_result);
}
#endif // _STL_128_INTRINSICS
#elif (defined(_M_ARM64) || defined(_M_ARM64EC)) && !defined(_M_CEE_PURE)
if (!_Is_constant_evaluated()) {
_High_result = __umulh(_Left, _Right);
return _Left * _Right;
}
Comment thread
Adesh4477 marked this conversation as resolved.
#endif // ^^^ (defined(_M_ARM64) || defined(_M_ARM64EC)) && !defined(_M_CEE_PURE) ^^^

const uint32_t __u[2] = {
static_cast<uint32_t>(_Left),
Expand Down