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

Merge latest trunk changes.

FossilOrigin-Name: d184cf00574b52b93f1f089025d6a0addca57558
This commit is contained in:
dan
2011-04-01 15:43:40 +00:00
20 changed files with 686 additions and 200 deletions

View File

@@ -560,6 +560,7 @@ void sqlite3VdbeChangeP5(Vdbe *p, u8 val){
** the address of the next instruction to be coded.
*/
void sqlite3VdbeJumpHere(Vdbe *p, int addr){
assert( addr>=0 );
sqlite3VdbeChangeP2(p, addr, p->nOp);
}