We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ddd80 commit d8e7f85Copy full SHA for d8e7f85
modules/javafx.web/src/main/native/Source/JavaScriptCore/llint/LLIntData.h
@@ -105,7 +105,7 @@ inline Opcode getOpcodeWide16(OpcodeID id)
105
#if ENABLE(COMPUTED_GOTO_OPCODES)
106
return g_opcodeMapWide16[id];
107
#else
108
- return static_cast<Opcode>(id - numOpcodeIDs);
+ return static_cast<Opcode>(id + numOpcodeIDs);
109
#endif
110
}
111
@@ -114,7 +114,7 @@ inline Opcode getOpcodeWide32(OpcodeID id)
114
115
return g_opcodeMapWide32[id];
116
117
+ return static_cast<Opcode>(id + numOpcodeIDs*2);
118
119
120
0 commit comments