Changeset 268247 in webkit for trunk/Source/JavaScriptCore/llint/LLIntData.cpp
- Timestamp:
- Oct 8, 2020, 10:08:11 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llint/LLIntData.cpp
r268241 r268247 63 63 64 64 for (int i = 0; i < numOpcodeIDs + numWasmOpcodeIDs; ++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);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]); 68 68 } 69 69
Note:
See TracChangeset
for help on using the changeset viewer.