Changeset 268241 in webkit for trunk/Source/JavaScriptCore/llint/LLIntData.cpp
- Timestamp:
- Oct 8, 2020, 6:18:14 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llint/LLIntData.cpp
r268170 r268241 63 63 64 64 for (int i = 0; i < numOpcodeIDs + numWasmOpcodeIDs; ++i) { 65 g_jscConfig.llint.opcodeMap[i] = tagCodePtr <BytecodePtrTag>(g_jscConfig.llint.opcodeMap[i]);66 g_jscConfig.llint.opcodeMapWide16[i] = tagCodePtr <BytecodePtrTag>(g_jscConfig.llint.opcodeMapWide16[i]);67 g_jscConfig.llint.opcodeMapWide32[i] = tagCodePtr <BytecodePtrTag>(g_jscConfig.llint.opcodeMapWide32[i]);65 g_jscConfig.llint.opcodeMap[i] = tagCodePtr(g_jscConfig.llint.opcodeMap[i], BytecodePtrTag); 66 g_jscConfig.llint.opcodeMapWide16[i] = tagCodePtr(g_jscConfig.llint.opcodeMapWide16[i], BytecodePtrTag); 67 g_jscConfig.llint.opcodeMapWide32[i] = tagCodePtr(g_jscConfig.llint.opcodeMapWide32[i], BytecodePtrTag); 68 68 } 69 69
Note:
See TracChangeset
for help on using the changeset viewer.