When compiling with VDBE_PROFILE, add the sqlite3NProfileCnt global variable
which can be used to measure per-opcode values other than elapse time, if
non-zero.
FossilOrigin-Name: d44d5936428859b6d3e089d9835acb8ca1f3c0a85b59eeaa619170623e7dcc30
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index f408ff6..f4c82cd 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4069,6 +4069,9 @@
extern int sqlite3PendingByte;
#endif
#endif
+#ifdef VDBE_PROFILE
+extern sqlite3_uint64 sqlite3NProfileCnt;
+#endif
void sqlite3RootPageMoved(sqlite3*, int, int, int);
void sqlite3Reindex(Parse*, Token*, Token*);
void sqlite3AlterFunctions(void);