]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor comments
authorYann Collet <yann.collet.73@gmail.com>
Thu, 11 Aug 2016 22:05:59 +0000 (00:05 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Thu, 11 Aug 2016 22:05:59 +0000 (00:05 +0200)
Makefile
NEWS

index d8e740bdbe824732b2f03e621e02ea6ce591fc8e..6e83f33a91df45519dc2977e078e1d8ac77a8eed 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -120,7 +120,7 @@ asan: clean
        $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address"
 
 msan: clean
-       $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=memory"   # datagen.c used to fail this test for no obvious reason
+       $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=memory -fno-omit-frame-pointer"   # datagen.c fails this test for no obvious reason
 
 asan32: clean
        $(MAKE) -C $(PRGDIR) test32 CC=clang MOREFLAGS="-g -fsanitize=address"
diff --git a/NEWS b/NEWS
index 5e46e0a7f78b31571e32352b0a240e47c831e04d..2202d192205feb7ac54680bbed92c94eda547870 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
 v0.8.1
 Changed : -i# now selects benchmark time in second
 Fixed : ZSTD_compress* can now compress > 4 GB in a single pass, reported by Nick Terrell
+Fixed : speed regression for specific patterns (#272)
 
 v0.8.0
 Improved : better speed on clang and gcc -O2, thanks to Eric Biggers