1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

During byte-code generation, strive to avoid jumps that merely jump to the

following instruction.

FossilOrigin-Name: bcf876e67e75f6709f2b25683a3952bbbb87c672bb9d7af456feebc0ab9f6c31
This commit is contained in:
drh
2020-02-07 19:44:13 +00:00
parent b48c0d59fa
commit dc4f6fc099
8 changed files with 49 additions and 16 deletions

View File

@@ -5493,7 +5493,7 @@ static void updateAccumulator(Parse *pParse, int regAcc, AggInfo *pAggInfo){
pAggInfo->directMode = 0;
if( addrHitTest ){
sqlite3VdbeJumpHere(v, addrHitTest);
sqlite3VdbeJumpHereOrPopInst(v, addrHitTest);
}
}