diff options
author | drh <> | 2023-04-07 15:07:58 +0000 |
---|---|---|
committer | drh <> | 2023-04-07 15:07:58 +0000 |
commit | 706c33d9bac7fd5d9e02ec0907b60226a250b719 (patch) | |
tree | d5e82c45014bf4808d770a6f2c3a38a839836fd2 /src/sqliteInt.h | |
parent | 34ceb7e62279f2bb274e70166a4e9c56e6794853 (diff) | |
download | sqlite-706c33d9bac7fd5d9e02ec0907b60226a250b719.tar.gz sqlite-706c33d9bac7fd5d9e02ec0907b60226a250b719.zip |
Tweaks to the new insertCellFast().
FossilOrigin-Name: 203a581a9177c1083e8d5b49e8ff026af33b5c5e3e144aeda126f07a3a2953bf
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 752cbbdb7..f33f6eb20 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -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 |