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

Tweaks to the new insertCellFast().

FossilOrigin-Name: 203a581a9177c1083e8d5b49e8ff026af33b5c5e3e144aeda126f07a3a2953bf
This commit is contained in:
drh
2023-04-07 15:07:58 +00:00
parent 34ceb7e622
commit 706c33d9ba
4 changed files with 24 additions and 24 deletions

View File

@@ -281,7 +281,7 @@
#endif
/*
** A macro to hint to the compiler that a function should not be
** Macros to hint to the compiler that a function should or should not be
** inlined.
*/
#if defined(__GNUC__)
@@ -294,6 +294,10 @@
# define SQLITE_NOINLINE
# define SQLITE_INLINE
#endif
#if defined(SQLITE_COVERAGE_TEST)
# undef SQLITE_INLINE
# define SQLITE_INLINE
#endif
/*
** Make sure that the compiler intrinsics we desire are enabled when