We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3021e69 commit e8ec049Copy full SHA for e8ec049
lib/lz4/lz4_decompress.c
@@ -141,6 +141,9 @@ static FORCE_INLINE int LZ4_decompress_generic(
141
* space in the output for those 18 bytes earlier, upon
142
* entering the shortcut (in other words, there is a
143
* combined check for both stages).
144
+ *
145
+ * The & in the likely() below is intentionally not && so that
146
+ * some compilers can produce better parallelized runtime code
147
*/
148
if ((endOnInput ? length != RUN_MASK : length <= 8)
149
/*
0 commit comments