platform/upstream/lz4.git
3 years agoAppveyor: added compilation and runtime fuzzer tests
Yann Collet [Fri, 2 Oct 2020 23:37:34 +0000 (16:37 -0700)]
Appveyor: added compilation and runtime fuzzer tests

to all Windows compiler targets

3 years agopreserver alignment test on Visual Studio x64
Yann Collet [Fri, 2 Oct 2020 22:51:14 +0000 (15:51 -0700)]
preserver alignment test on Visual Studio x64

this it works fine in this environment
(only x86 is suspicious)

3 years agofixed x32 test on Travis
Yann Collet [Fri, 2 Oct 2020 22:43:46 +0000 (15:43 -0700)]
fixed x32 test on Travis

3 years agofix cppcheck unused variable warning
Yann Collet [Fri, 2 Oct 2020 21:10:00 +0000 (14:10 -0700)]
fix cppcheck unused variable warning

3 years agoadded LZ4_streamHC_t init test
Yann Collet [Fri, 2 Oct 2020 20:06:51 +0000 (13:06 -0700)]
added LZ4_streamHC_t init test

which includes an alignment test

3 years agoMerge pull request #925 from lz4/test_null
Yann Collet [Fri, 2 Oct 2020 15:30:25 +0000 (08:30 -0700)]
Merge pull request #925 from lz4/test_null

add LZ4F_decompress() tests with (NULL,0) input and output

3 years agodefine sentinelTest
Yann Collet [Fri, 2 Oct 2020 06:42:42 +0000 (23:42 -0700)]
define sentinelTest

to help scan-build detect the condition

3 years agomake it possible to select SCANBUILD binary on command line
Yann Collet [Fri, 2 Oct 2020 06:27:02 +0000 (23:27 -0700)]
make it possible to select SCANBUILD binary on command line

3 years agoadd LZ4F_decompress() tests with (NULL,0) input and output
Yann Collet [Fri, 2 Oct 2020 02:07:56 +0000 (19:07 -0700)]
add LZ4F_decompress() tests with (NULL,0) input and output

fix one (rare & complex) issue discovered by this test

3 years agoMerge pull request #924 from lz4/safixes
Yann Collet [Thu, 1 Oct 2020 19:53:27 +0000 (12:53 -0700)]
Merge pull request #924 from lz4/safixes

fix minor static analyzer warnings

3 years agomake scan-build accept assert()
Yann Collet [Thu, 1 Oct 2020 17:48:22 +0000 (10:48 -0700)]
make scan-build accept assert()

3 years agofix bad init scenario
Yann Collet [Thu, 1 Oct 2020 05:51:17 +0000 (22:51 -0700)]
fix bad init scenario

3 years agoadded memcpy() related SA warning fixes
Yann Collet [Thu, 1 Oct 2020 00:39:42 +0000 (17:39 -0700)]
added memcpy() related SA warning fixes

memcpy() on NULL is UB, even if length is 0.

3 years agoMerge branch 'safixes' of github.com:lz4/lz4 into safixes
Yann Collet [Wed, 30 Sep 2020 07:23:47 +0000 (00:23 -0700)]
Merge branch 'safixes' of github.com:lz4/lz4 into safixes

3 years agofix conversion warning
Yann Collet [Wed, 30 Sep 2020 04:53:42 +0000 (21:53 -0700)]
fix conversion warning

3 years agoMerge branch 'dev' into safixes
Yann Collet [Wed, 30 Sep 2020 00:21:59 +0000 (17:21 -0700)]
Merge branch 'dev' into safixes

3 years agofix minor static analyzer warnings
Yann Collet [Tue, 29 Sep 2020 05:37:20 +0000 (22:37 -0700)]
fix minor static analyzer warnings

detected by scan-build, cppcheck and advanved compilation flags
fix #786

3 years agofix minor static analyzer warnings
Yann Collet [Tue, 29 Sep 2020 05:37:20 +0000 (22:37 -0700)]
fix minor static analyzer warnings

detected by scan-build and cppcheck
fix #786

3 years agobump version number
Yann Collet [Tue, 29 Sep 2020 21:27:39 +0000 (14:27 -0700)]
bump version number

to v1.9.3

3 years agoMerge pull request #923 from lz4/fix784
Yann Collet [Mon, 28 Sep 2020 21:04:56 +0000 (14:04 -0700)]
Merge pull request #923 from lz4/fix784

fix efficiency of LZ4_compress_HC_destSize()

3 years agoimproved last literals run on LZ4_compress_destSize
Yann Collet [Mon, 28 Sep 2020 18:39:00 +0000 (11:39 -0700)]
improved last literals run on LZ4_compress_destSize

applying new more accurate formula from LZ4_compress_HC_destSize()

also : fix some minor display issue in tests/frametest

3 years agoensure last match not too close to end
Yann Collet [Mon, 28 Sep 2020 06:59:56 +0000 (23:59 -0700)]
ensure last match not too close to end

must respect MFLIMIT distance from oend

3 years agofix incorrect counting
Yann Collet [Mon, 28 Sep 2020 05:47:05 +0000 (22:47 -0700)]
fix incorrect counting

after truncation of last sequence

3 years agoMerge pull request #921 from lz4/doubleNull
Yann Collet [Mon, 28 Sep 2020 04:09:06 +0000 (21:09 -0700)]
Merge pull request #921 from lz4/doubleNull

fix compressing into NULL

3 years agoMerge pull request #922 from XVilka/tinycc-support
Yann Collet [Mon, 28 Sep 2020 04:08:26 +0000 (21:08 -0700)]
Merge pull request #922 from XVilka/tinycc-support

Fix compilation with TinyCC

3 years agofix efficiency of LZ4_compress_HC_destSize()
Yann Collet [Mon, 28 Sep 2020 04:04:40 +0000 (21:04 -0700)]
fix efficiency of LZ4_compress_HC_destSize()

LZ4_compress_HC_destSize() had a tendency
to discard its last match when this match overflowed specified dstBuffer limit.
The impact is generally moderate,
but occasionally huge,
typically when this last match is very large
(such as compressing a bunch of zeroes).

Issue #784 fixed for both Chain and Opt implementations.

Added a unit test suggested by @remittor checking this topic.

3 years agoFix compilation with TinyCC
Anton Kochkov [Sun, 27 Sep 2020 09:07:51 +0000 (17:07 +0800)]
Fix compilation with TinyCC

3 years agofix compressing into NULL
Yann Collet [Sat, 26 Sep 2020 18:31:57 +0000 (11:31 -0700)]
fix compressing into NULL

fails properly
bug discovered by oss-fuzz

3 years agoMerge pull request #919 from attilaolah/cli
Yann Collet [Wed, 23 Sep 2020 15:23:59 +0000 (08:23 -0700)]
Merge pull request #919 from attilaolah/cli

Add CMake option LZ4_BUILD_CLI

3 years agoAdd CMake option LZ4_BUILD_CLI.
Attila Oláh [Wed, 23 Sep 2020 12:49:25 +0000 (12:49 +0000)]
Add CMake option LZ4_BUILD_CLI.

Defaults to ON so nothing changes, but it can be set to OFF so that the
CLI is not built at all, only the library.

3 years agocomment bug on older versions of ZSTD_compress_destSize()
Yann Collet [Fri, 18 Sep 2020 03:59:01 +0000 (20:59 -0700)]
comment bug on older versions of ZSTD_compress_destSize()

following investigation in #859

3 years agoMerge pull request #918 from lz4/usan_null
Yann Collet [Fri, 18 Sep 2020 03:23:06 +0000 (20:23 -0700)]
Merge pull request #918 from lz4/usan_null

Properly fix #847

3 years agofixed ubsan tests with dynamic library
Yann Collet [Thu, 17 Sep 2020 23:49:21 +0000 (16:49 -0700)]
fixed ubsan tests with dynamic library

3 years agoubsan: make pointer overflow recoverable
Yann Collet [Thu, 17 Sep 2020 22:34:03 +0000 (15:34 -0700)]
ubsan: make pointer overflow recoverable

the way `base` is used must allow 2-complement address overflow.
`base` is effectively a virtual pointer, never dereferenced directly.
What matters is `base + index`.
This is the address that will be dereference and must be valid (it is properly validated).

3 years agofixed lz4frame with blocks of size 1
Yann Collet [Thu, 17 Sep 2020 21:43:02 +0000 (14:43 -0700)]
fixed lz4frame with blocks of size 1

properly track history

3 years agoMerge branch 'usan_null' of github.com:Cyan4973/lz4 into usan_null
Yann Collet [Thu, 17 Sep 2020 17:38:59 +0000 (10:38 -0700)]
Merge branch 'usan_null' of github.com:Cyan4973/lz4 into usan_null

3 years agoMerge branch 'usan_null' of github.com:lz4/lz4 into usan_null
Yann Collet [Thu, 17 Sep 2020 17:32:05 +0000 (10:32 -0700)]
Merge branch 'usan_null' of github.com:lz4/lz4 into usan_null

3 years agofix ubsan test
Yann Collet [Thu, 17 Sep 2020 17:29:31 +0000 (10:29 -0700)]
fix ubsan test

which now fails with a clear error as intended
(not just print a status and move on).
should be reproduced on travisCI

3 years agoadded the actual code change
Yann Collet [Thu, 17 Sep 2020 06:46:39 +0000 (23:46 -0700)]
added the actual code change

3 years agoMerge pull request #913 from lz4/usan_null
Yann Collet [Thu, 17 Sep 2020 06:24:41 +0000 (23:24 -0700)]
Merge pull request #913 from lz4/usan_null

fix #847

3 years agofix #847
Yann Collet [Tue, 15 Sep 2020 21:54:53 +0000 (14:54 -0700)]
fix #847

support NULL input
without triggering undefined sanitizer

3 years agoadded test triggering NULL arithmetic with usan
Yann Collet [Tue, 15 Sep 2020 20:45:06 +0000 (13:45 -0700)]
added test triggering NULL arithmetic with usan

described in #847

3 years agoMerge pull request #910 from lz4/extraInput
Yann Collet [Thu, 27 Aug 2020 18:00:28 +0000 (11:00 -0700)]
Merge pull request #910 from lz4/extraInput

Fix issue #783

3 years agofixed minor pre-existing printf formatting
Yann Collet [Thu, 27 Aug 2020 16:20:01 +0000 (09:20 -0700)]
fixed minor pre-existing printf formatting

different signedness

3 years agofixed strict c90 support
Yann Collet [Thu, 27 Aug 2020 07:38:58 +0000 (00:38 -0700)]
fixed strict c90 support

3 years agofix #783
Yann Collet [Thu, 27 Aug 2020 07:17:57 +0000 (00:17 -0700)]
fix #783

LZ4_decompress_safe_partial()
now also supports a scenario where
nb_bytes_to_generate is <= block_decompressed_size
And
nb_bytes_to_read is >= block_compressed_size.

Previously, the only supported scenario was
nb_bytes_to_read == block_compress_size.

Pay attention that,
if nb_bytes_to_read is > block_compressed_size,
then, necessarily, it requires that
nb_bytes_to_generate is <= block_decompress_size.
If both are larger, it will generate corrupted data.

3 years agoMerge branch 'dev' into extraInput
Yann Collet [Thu, 27 Aug 2020 06:20:28 +0000 (23:20 -0700)]
Merge branch 'dev' into extraInput

3 years agoMerge pull request #909 from lz4/fasterCount
Yann Collet [Wed, 26 Aug 2020 15:13:52 +0000 (08:13 -0700)]
Merge pull request #909 from lz4/fasterCount

Improved software byte count

3 years agoMerge branch 'dev' into fasterCount
Yann Collet [Wed, 26 Aug 2020 05:18:54 +0000 (22:18 -0700)]
Merge branch 'dev' into fasterCount

3 years agoadded documentation about LZ4_FORCE_SW_BITCOUNT
Yann Collet [Wed, 26 Aug 2020 05:17:29 +0000 (22:17 -0700)]
added documentation about LZ4_FORCE_SW_BITCOUNT

Also : added memory-frugal software byte count for big endian 64-bit cpus.
Disabled by default.

3 years agoMerge pull request #908 from lz4/stdin_size
Yann Collet [Wed, 26 Aug 2020 04:15:31 +0000 (21:15 -0700)]
Merge pull request #908 from lz4/stdin_size

Added ability to determine content-size

3 years agofix test under non-interactive environment
Yann Collet [Tue, 25 Aug 2020 21:53:08 +0000 (14:53 -0700)]
fix test under non-interactive environment

3 years agoadded more tests around --content-size
Yann Collet [Tue, 25 Aug 2020 21:42:15 +0000 (14:42 -0700)]
added more tests around --content-size

notably in association with `stdin`

3 years agouse variables for program invocation
Yann Collet [Tue, 25 Aug 2020 21:25:51 +0000 (14:25 -0700)]
use variables for program invocation

3 years agoMerge pull request #905 from nh2/use-fstat
Yann Collet [Tue, 25 Aug 2020 21:19:40 +0000 (14:19 -0700)]
Merge pull request #905 from nh2/use-fstat

Use fstat() to determine file size

3 years agofixup: Portable fileno()
Niklas Hambüchen [Tue, 25 Aug 2020 01:37:41 +0000 (03:37 +0200)]
fixup: Portable fileno()

3 years agofixup: C90 compliance, clean up stat() types/calls
Niklas Hambüchen [Tue, 25 Aug 2020 01:05:01 +0000 (03:05 +0200)]
fixup: C90 compliance, clean up stat() types/calls

3 years agoMerge pull request #898 from aqrit/aqrit-prefixlen
Yann Collet [Mon, 24 Aug 2020 22:13:18 +0000 (15:13 -0700)]
Merge pull request #898 from aqrit/aqrit-prefixlen

rejigger bit counting intrinsics

3 years agoMerge pull request #902 from lz4/realhw
Yann Collet [Mon, 24 Aug 2020 22:07:18 +0000 (15:07 -0700)]
Merge pull request #902 from lz4/realhw

added target aarch64, ppc64lw and s390x to TravisCI

3 years agoMerge pull request #907 from terrelln/travis
Yann Collet [Mon, 24 Aug 2020 19:20:10 +0000 (12:20 -0700)]
Merge pull request #907 from terrelln/travis

[CI][ossfuzz] Fix string equal

3 years agoMerge pull request #903 from lz4/nofastforce
Yann Collet [Mon, 24 Aug 2020 18:28:47 +0000 (11:28 -0700)]
Merge pull request #903 from lz4/nofastforce

removed LZ4_compress_fast_force()

3 years ago[CI][ossfuzz] Fix string equal
Nick Terrell [Mon, 24 Aug 2020 18:22:57 +0000 (11:22 -0700)]
[CI][ossfuzz] Fix string equal

3 years agoUse fstat() to determine file size.
Niklas Hambüchen [Mon, 24 Aug 2020 04:23:51 +0000 (06:23 +0200)]
Use fstat() to determine file size.

This allows us to get the file size even when the input file is passed
via stdin. This fixes `--content-size` not working in situations like

    $ lz4 -v --content-size < /tmp/test > /tmp/test.lz4
    Warning : cannot determine input content size

With this change, it works.

Also helps with #904.

3 years agoremoved LZ4_compress_fast_force()
Yann Collet [Sat, 22 Aug 2020 02:23:49 +0000 (19:23 -0700)]
removed LZ4_compress_fast_force()

which serves no more purpose.

The comment implies that the simple presence of this unused function was affecting performance,
and that's the reason why it was not removed earlier.
This is likely another side effect of instruction alignment.

It's obviously unreliable to rely on it in this way,
meaning that the impact will be different, positive of negative,
with any minor code change, and any minor compiler version change, even parameter change.

3 years agoadded target aarch64, ppc64lw and s390x to TravisCI
Yann Collet [Sat, 22 Aug 2020 01:12:13 +0000 (18:12 -0700)]
added target aarch64, ppc64lw and s390x to TravisCI

more portability tests

3 years agoMerge pull request #886 from servusDei2018/dev
Yann Collet [Fri, 21 Aug 2020 21:17:43 +0000 (14:17 -0700)]
Merge pull request #886 from servusDei2018/dev

Optimized by replacing `endl` with `'\n'`

3 years agoMerge pull request #900 from terrelln/cmake-build
Yann Collet [Thu, 20 Aug 2020 03:08:01 +0000 (20:08 -0700)]
Merge pull request #900 from terrelln/cmake-build

[build] Move CMake and Visual build systems to build/

3 years agoMerge pull request #901 from terrelln/travis
Yann Collet [Thu, 20 Aug 2020 03:07:50 +0000 (20:07 -0700)]
Merge pull request #901 from terrelln/travis

[CI][Fuzz] Fix Travis-CI fuzzer tests

3 years ago[CI][Fuzz] Fix Travis-CI fuzzer tests
Nick Terrell [Thu, 20 Aug 2020 01:19:11 +0000 (18:19 -0700)]
[CI][Fuzz] Fix Travis-CI fuzzer tests

Fixes #781

3 years ago[build] Move CMake and Visual build systems to build/
Nick Terrell [Thu, 20 Aug 2020 01:06:49 +0000 (18:06 -0700)]
[build] Move CMake and Visual build systems to build/

Fixes #852.

3 years agoMerge branch 'dev' into extraInput
Yann Collet [Tue, 18 Aug 2020 22:34:51 +0000 (15:34 -0700)]
Merge branch 'dev' into extraInput

3 years agoMerge pull request #897 from lz4/lz4wlib
Yann Collet [Tue, 18 Aug 2020 17:24:36 +0000 (10:24 -0700)]
Merge pull request #897 from lz4/lz4wlib

added target lz4-wlib

3 years agosilence warning
aqrit [Mon, 17 Aug 2020 21:53:07 +0000 (17:53 -0400)]
silence warning

MSVC debug mode complains

3 years agoMerge pull request #899 from lz4/endMark
Yann Collet [Fri, 14 Aug 2020 22:48:21 +0000 (15:48 -0700)]
Merge pull request #899 from lz4/endMark

Clarifies and fix EndMark

3 years agoclarify endMark definition
Yann Collet [Fri, 14 Aug 2020 22:03:03 +0000 (15:03 -0700)]
clarify endMark definition

3 years agoClarifies and fix EndMark
Yann Collet [Thu, 13 Aug 2020 00:27:33 +0000 (17:27 -0700)]
Clarifies and fix EndMark

EndMark, the 4-bytes value indicating the end of frame,
must be `0x00000000`.

Previously, it was just mentioned as a `0-size` block.
But such definition could encompass uncompressed blocks of size 0,
with a header of value `0x80000000`.

But the intention was to also support uncompressed empty blocks.
They could be used as a keep-alive signal.
Note that compressed empty blocks are already supported,
it's just that they have a size 1 instead of 0 (for the `0` token).

Unfortunately, the decoder implementation was also wrong,
and would also interpret a `0x80000000` block header as an endMark.

This issue evaded detection so far simply because
this situation never happens, as LZ4Frame always issues
a clean 0x00000000 value as a endMark.
It also does not flush empty blocks.

This is fixed in this PR.
The decoder can now deal with empty uncompressed blocks,
and do not confuse them with EndMark.
The specification is also clarified.
Finally, FrameTest is updated to randomly insert empty blocks during fuzzing.

3 years agofix issue #783 (#862)
BellaXlp [Wed, 12 Aug 2020 21:42:10 +0000 (05:42 +0800)]
fix issue #783 (#862)

* fix issue #783

3 years agoadded test decompress-partial with extraneous input bytes
Yann Collet [Wed, 12 Aug 2020 21:39:01 +0000 (14:39 -0700)]
added test decompress-partial with extraneous input bytes

fails currently,
for investigation of #783

3 years agorejigger bit counting intrinsics
aqrit [Wed, 12 Aug 2020 01:14:09 +0000 (21:14 -0400)]
rejigger bit counting intrinsics

Fix lz4/lz4#867
Optimize software fallback routines.
Delete some faulty (and dead?) MSVC big endian code.

3 years agoadded target lz4-wlib
Yann Collet [Tue, 11 Aug 2020 21:03:20 +0000 (14:03 -0700)]
added target lz4-wlib

variant of lz4 linking to liblz4 dynamic library

requires the dynamic library to expose static-only symbols (experimental API)

Example for #888

3 years agoMerge branch 'fix832' into dev
Yann Collet [Tue, 11 Aug 2020 01:17:09 +0000 (18:17 -0700)]
Merge branch 'fix832' into dev

3 years agofixed test of gnu c version
Yann Collet [Tue, 11 Aug 2020 00:11:49 +0000 (17:11 -0700)]
fixed test of gnu c version

3 years agoMerge pull request #896 from lz4/fix832
Yann Collet [Mon, 10 Aug 2020 21:31:48 +0000 (14:31 -0700)]
Merge pull request #896 from lz4/fix832

fix #832

3 years agoMerge pull request #895 from lz4/hugefast
Yann Collet [Mon, 10 Aug 2020 19:52:32 +0000 (12:52 -0700)]
Merge pull request #895 from lz4/hugefast

Fix #876

3 years agofix #832
Yann Collet [Mon, 10 Aug 2020 18:51:57 +0000 (11:51 -0700)]
fix #832

does no longer rely on default 0-interpretation when __GNUC__ is not defined

3 years agoMerge pull request #892 from felixhandte/lz4-clean-up-fast-reset
Yann Collet [Mon, 10 Aug 2020 18:28:46 +0000 (11:28 -0700)]
Merge pull request #892 from felixhandte/lz4-clean-up-fast-reset

Remove dirty Flag in LZ4_stream_t

3 years agofix #876
Yann Collet [Mon, 10 Aug 2020 18:03:27 +0000 (11:03 -0700)]
fix #876

by introducing a max limit acceleration value

3 years agoadd test that breaks --fast
Yann Collet [Mon, 10 Aug 2020 17:54:35 +0000 (10:54 -0700)]
add test that breaks --fast

with huge values, as expected from #876

Also : added target `check`

3 years agoFix Enum Casts
W. Felix Handte [Mon, 10 Aug 2020 17:46:31 +0000 (13:46 -0400)]
Fix Enum Casts

Fixes `-Wsign-compare` issues.

3 years agoMerge pull request #856 from indragiek/indragiek/lz4f-visibility
Yann Collet [Sat, 8 Aug 2020 20:21:07 +0000 (13:21 -0700)]
Merge pull request #856 from indragiek/indragiek/lz4f-visibility

Add LZ4FLIB_VISIBILITY for controlling library symbol visibility

3 years agoRemove dirty Field From LZ4_stream_t
W. Felix Handte [Thu, 6 Aug 2020 20:06:40 +0000 (16:06 -0400)]
Remove dirty Field From LZ4_stream_t

3 years agoLZ4LIB_VISIBILITY -> LZ4FLIB_VISIBILITY in comment
Indragie Karunaratne [Wed, 5 Aug 2020 21:34:07 +0000 (15:34 -0600)]
LZ4LIB_VISIBILITY -> LZ4FLIB_VISIBILITY in comment

3 years agoRemove Extraneous Reset in LZ4_attach_dictionary()
W. Felix Handte [Wed, 5 Aug 2020 16:46:32 +0000 (12:46 -0400)]
Remove Extraneous Reset in LZ4_attach_dictionary()

Nothing internally sets dirty anymore. The only way to get that is if you use
an uninitialized context, in which case your warranty is void anyways.

3 years agoMerge pull request #890 from terrelln/lz4-memcpy
Yann Collet [Tue, 4 Aug 2020 01:34:16 +0000 (18:34 -0700)]
Merge pull request #890 from terrelln/lz4-memcpy

Call LZ4_memcpy() instead of memcpy()

3 years agoCall LZ4_memcpy() instead of memcpy()
Nick Terrell [Mon, 3 Aug 2020 18:18:35 +0000 (11:18 -0700)]
Call LZ4_memcpy() instead of memcpy()

`LZ4_memcpy()` uses `__builtin_memcpy()` to ensure that clang/gcc
can inline the `memcpy()` calls in freestanding mode.

This is necessary for decompressing the Linux Kernel with LZ4.
Without an analogous patch decompression ran at 77 MB/s, and with
the patch it ran at 884 MB/s.

3 years agoMerge pull request #885 from neheb/mes
Yann Collet [Mon, 3 Aug 2020 17:47:24 +0000 (10:47 -0700)]
Merge pull request #885 from neheb/mes

meson: remove build requirement for distutils

3 years agoMerge pull request #860 from adeason/old-style-definitions
Yann Collet [Wed, 29 Jul 2020 00:44:25 +0000 (17:44 -0700)]
Merge pull request #860 from adeason/old-style-definitions

Avoid old-style function definitions

4 years agoOptimized by replacing `endl` with `'\n'`
Nate [Fri, 24 Jul 2020 00:13:14 +0000 (20:13 -0400)]
Optimized by replacing `endl` with `'\n'`

4 years agomeson: remove build requirement for distutils
Rosen Penev [Tue, 21 Jul 2020 21:04:17 +0000 (14:04 -0700)]
meson: remove build requirement for distutils

Tested on a default installation of Debian 10.

Same as https://github.com/facebook/zstd/pull/2197

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agoMerge pull request #863 from Devernua/reducing_stack_usage_in_t_alignment
Yann Collet [Thu, 16 Jul 2020 16:44:40 +0000 (09:44 -0700)]
Merge pull request #863 from Devernua/reducing_stack_usage_in_t_alignment

Reducing stack usage in _t_alignment checks