]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
fix typo "ones_u32a" => "ones_u32"
authorChang, Harry <harry.chang@intel.com>
Mon, 24 Jul 2017 03:05:46 +0000 (11:05 +0800)
committerMatthew Barr <matthew.barr@intel.com>
Mon, 21 Aug 2017 01:12:36 +0000 (11:12 +1000)
src/fdr/teddy.c
src/fdr/teddy_avx2.c

index f28d0a50227dcc554384c2ce46802d033eda9d15..db68749a7eb484f684c29435cb7c844a09741e54 100644 (file)
@@ -86,7 +86,7 @@ do {                                                                        \
 
 #define CONF_CHUNK_32(chunk, bucket, off, reason, conf_fn)                  \
 do {                                                                        \
-    if (unlikely(chunk != ones_u32a)) {                                     \
+    if (unlikely(chunk != ones_u32)) {                                      \
         chunk = ~chunk;                                                     \
         conf_fn(&chunk, bucket, off, confBase, reason, a, ptr,              \
                 &control, &last_match);                                     \
index 4091963c99dc86c991d823c76fe1ba9cbb983af9..1d037028192c53c21535325bfe892e4eb35d2b0a 100644 (file)
@@ -121,7 +121,7 @@ do {                                                                        \
 
 #define CONF_FAT_CHUNK_32(chunk, bucket, off, reason, conf_fn)              \
 do {                                                                        \
-    if (unlikely(chunk != ones_u32a)) {                                     \
+    if (unlikely(chunk != ones_u32)) {                                      \
         chunk = ~chunk;                                                     \
         conf_fn(&chunk, bucket, off, confBase, reason, a, ptr,              \
                 &control, &last_match);                                     \