summaryrefslogtreecommitdiffstats
path: root/lib/xxhash.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-08-16 00:54:55 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-08-16 00:54:55 (GMT)
commit0f2bf0c54e59d7a926074907556cff883a47f9c5 (patch)
tree38c3ffe272c6121fc2f5b090a3790287a5045639 /lib/xxhash.c
parentfb4d3ef2c487e9dad7978ec4ee558c04cb8fec9d (diff)
downloadlz4-0f2bf0c54e59d7a926074907556cff883a47f9c5.zip
lz4-0f2bf0c54e59d7a926074907556cff883a47f9c5.tar.gz
lz4-0f2bf0c54e59d7a926074907556cff883a47f9c5.tar.bz2
Improved performance on ARMv6
Diffstat (limited to 'lib/xxhash.c')
-rw-r--r--lib/xxhash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xxhash.c b/lib/xxhash.c
index a18b978..a80f1d5 100644
--- a/lib/xxhash.c
+++ b/lib/xxhash.c
@@ -35,7 +35,7 @@ You can contact the author at :
/**************************************
* Tuning parameters
**************************************/
-/* XXH_FORCE_DIRECT_UNALIGNED_MEMORY_ACCESS
+/* XXH_FORCE_DIRECT_MEMORY_ACCESS
* Unaligned memory access is automatically enabled for "common" CPU, such as x86/x64.
* For others CPU, the compiler will be more cautious, and insert extra code to ensure proper working with unaligned memory accesses.
* If you know your target CPU efficiently supports unaligned memory accesses, you can force this option manually.