mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-02 05:54:29 +03:00
Rename the OP_MX_JUMP macro to SQLITE_MX_JUMP_OPCODE to avoid confusing the
opcode name generator. FossilOrigin-Name: e554a4c38bda9c73bf129bb7c665c53ccc4d96a8
This commit is contained in:
@@ -564,9 +564,9 @@ static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){
|
||||
** below need to be considered. The mkopcodeh.tcl generator script groups
|
||||
** all these opcodes together near the front of the opcode list. Skip
|
||||
** any opcode that does not need processing by virtual of the fact that
|
||||
** it is larger than OP_MX_JUMP, as a performance optimization.
|
||||
** it is larger than SQLITE_MX_JUMP_OPCODE, as a performance optimization.
|
||||
*/
|
||||
if( pOp->opcode<=OP_MX_JUMP ){
|
||||
if( pOp->opcode<=SQLITE_MX_JUMP_OPCODE ){
|
||||
/* NOTE: Be sure to update mkopcodeh.tcl when adding or removing
|
||||
** cases from this switch! */
|
||||
switch( pOp->opcode ){
|
||||
|
||||
Reference in New Issue
Block a user