aboutsummaryrefslogtreecommitdiffstats
path: root/biology/vsearch/files/patch-src_searchcore.cc
diff options
context:
space:
mode:
authorLexi Winter <ivy@FreeBSD.org>2025-12-01 03:19:41 +0000
committerLexi Winter <ivy@FreeBSD.org>2025-12-01 03:19:41 +0000
commit2e80774d0b20d167bc0a9e2b63dafbfb171c0d22 (patch)
tree25f0138e1af8902b92dacc8cce09b267447c17db /biology/vsearch/files/patch-src_searchcore.cc
parentf85f2b2d6e5b7ed869376eb4b180c3a74a5c5da9 (diff)
parent1a30da80670973368b399f2b01fe9c04b91a1273 (diff)
Merge remote-tracking branch 'freebsd/main' into lf/mainlf/main
Diffstat (limited to 'biology/vsearch/files/patch-src_searchcore.cc')
-rw-r--r--biology/vsearch/files/patch-src_searchcore.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/biology/vsearch/files/patch-src_searchcore.cc b/biology/vsearch/files/patch-src_searchcore.cc
index 84870932c9fd..85894cf869e5 100644
--- a/biology/vsearch/files/patch-src_searchcore.cc
+++ b/biology/vsearch/files/patch-src_searchcore.cc
@@ -1,18 +1,18 @@
---- src/searchcore.cc.orig 2024-09-26 10:48:55 UTC
+--- src/searchcore.cc.orig 2025-10-05 12:35:57 UTC
+++ src/searchcore.cc
-@@ -239,9 +239,14 @@ auto search_topscores(struct searchinfo_s * si) -> voi
- if (bitmap)
+@@ -285,9 +285,14 @@ auto search_topscores(struct searchinfo_s * searchinfo
+ if (bitmap != nullptr)
{
#ifdef __x86_64__
-+ // Not sure how to enable ssse3 without enabling other
-+ // non-portable features.
-+ // This code is only used rarely, so disable ssse3 for now.
-+ // It won't affect performance much on the whole.
-+ // https://github.com/torognes/vsearch/pull/497
- if (ssse3_present)
++ // Not sure how to enable ssse3 without enabling other
++ // non-portable features.
++ // This code is only used rarely, so disable ssse3 for now.
++ // It won't affect performance much on the whole.
++ // https://github.com/torognes/vsearch/pull/497
+ if (ssse3_present != 0)
{
-- increment_counters_from_bitmap_ssse3(si->kmers,
-+ increment_counters_from_bitmap_sse2(si->kmers,
+- increment_counters_from_bitmap_ssse3(searchinfo->kmers,
++ increment_counters_from_bitmap_sse2(searchinfo->kmers,
bitmap, indexed_count);
}
else