about summary refs log tree commit diff
path: root/sysdeps/x86_64/memrchr.S
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/x86_64/memrchr.S')
-rw-r--r--sysdeps/x86_64/memrchr.S10
1 files changed, 8 insertions, 2 deletions
diff --git a/sysdeps/x86_64/memrchr.S b/sysdeps/x86_64/memrchr.S
index 385e2c5668..d39b1aa0e2 100644
--- a/sysdeps/x86_64/memrchr.S
+++ b/sysdeps/x86_64/memrchr.S
@@ -1,4 +1,4 @@
-/* fast SSE2 memrchr with 64 byte loop and pmaxub instruction using
+/* memrchr dispatch for RTLD and non-multiarch build
 
    Copyright (C) 2011-2022 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
@@ -18,5 +18,11 @@
    <https://www.gnu.org/licenses/>.  */
 
 #define MEMRCHR	__memrchr
-#include "multiarch/memrchr-sse2.S"
+
+#define DEFAULT_IMPL_V1	"multiarch/memrchr-sse2.S"
+#define DEFAULT_IMPL_V3	"multiarch/memrchr-avx2.S"
+#define DEFAULT_IMPL_V4	"multiarch/memrchr-evex.S"
+
+#include "isa-default-impl.h"
+
 weak_alias (__memrchr, memrchr)