The unified diff between revisions [5587f68e..] and [95cbeaa8..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'sqlite/vdbeaux.c'
#
#
# patch "sqlite/vdbeaux.c"
# from [57a6ced8417bdc6f06c391d9c560ecbbed644ef3]
# to [2b728d82cf2095386a90051b66e7faf1a143f27d]
#
============================================================
--- sqlite/vdbeaux.c 57a6ced8417bdc6f06c391d9c560ecbbed644ef3
+++ sqlite/vdbeaux.c 2b728d82cf2095386a90051b66e7faf1a143f27d
@@ -351,6 +351,13 @@ void sqlite3VdbeChangeP2(Vdbe *p, int ad
}
}
+/*
+** Change teh P2 operand of instruction addr so that it points to
+** the address of the next instruction to be coded.
+*/
+void sqlite3VdbeJumpHere(Vdbe *p, int addr){
+ sqlite3VdbeChangeP2(p, addr, p->nOp);
+}
/*
** Delete a P3 value if necessary.