Changeset 263277 in webkit
- Timestamp:
- Jun 19, 2020, 11:07:16 AM (6 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
tools/JSDollarVM.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r263252 r263277 1 2020-06-19 Tuomas Karkkainen <tuomas.webkit@apple.com> 2 3 functionCpuClflush checks that the second argument is Int32 but it actually expects it to be UInt32 4 https://bugs.webkit.org/show_bug.cgi?id=213388 5 6 Reviewed by Saam Barati. 7 8 This changes the check from isInt32() to isUInt32() so that the logic is consistent. 9 10 * tools/JSDollarVM.cpp: 11 1 12 2020-06-18 Mark Lam <mark.lam@apple.com> 2 13 -
trunk/Source/JavaScriptCore/tools/JSDollarVM.cpp
r263174 r263277 1743 1743 VM& vm = globalObject->vm(); 1744 1744 1745 if (!callFrame->argument(1).is Int32())1745 if (!callFrame->argument(1).isUInt32()) 1746 1746 return JSValue::encode(jsBoolean(false)); 1747 1747
Note:
See TracChangeset
for help on using the changeset viewer.