diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2015-05-21 00:17:56 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2015-05-21 00:17:56 (GMT) |
commit | 91c1b9a682a8b4d6e9b5eb47194890c14480116d (patch) | |
tree | 43ed6a6aa6a6afd13d5d8819eabc30bf94e56d6e /lib/lz4.c | |
parent | 0fb0392da72ce14eb49243569248907fbfe04ee7 (diff) | |
download | lz4-91c1b9a682a8b4d6e9b5eb47194890c14480116d.zip lz4-91c1b9a682a8b4d6e9b5eb47194890c14480116d.tar.gz lz4-91c1b9a682a8b4d6e9b5eb47194890c14480116d.tar.bz2 |
Performance fix : big compression speed boost for clang (+30%)
Diffstat (limited to 'lib/lz4.c')
-rw-r--r-- | lib/lz4.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -432,7 +432,7 @@ static const BYTE* LZ4_getPosition(const BYTE* p, void* tableBase, tableType_t t return LZ4_getPositionOnHash(h, tableBase, tableType, srcBase); } -static int LZ4_compress_generic( +FORCE_INLINE int LZ4_compress_generic( void* const ctx, const char* const source, char* const dest, |