Changeset 270766 in webkit
- Timestamp:
- Dec 14, 2020, 3:46:06 AM (5 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r270764 r270766 1 2020-12-14 Robin Morisset <rmorisset@apple.com> 2 3 Minor cleanup of BigInts 4 https://bugs.webkit.org/show_bug.cgi?id=219253 5 6 Reviewed by Yusuke Suzuki. 7 8 * runtime/JSBigInt.cpp: 9 (JSC::rightShiftByAbsolute): 10 1 11 2020-12-13 Yusuke Suzuki <ysuzuki@apple.com> 2 12 -
trunk/Source/JavaScriptCore/runtime/JSBigInt.cpp
r270298 r270766 2049 2049 2050 2050 if (!bitsShift) { 2051 result->setDigit(resultLength - 1, 0); 2051 2052 for (unsigned i = digitalShift; i < length; i++) 2052 2053 result->setDigit(i - digitalShift, x.digit(i));
Note:
See TracChangeset
for help on using the changeset viewer.