libc: remove riscv64 mem*/str* ifuncs and fallbacks
Only riscv64 chips with vector support are supported, so the fallbacks &
ifuncs here aren't needed.
Bug: 378117947
Test: lunch aosp_cf_riscv64_phone-trunk_staging-userdebug; m
Change-Id: Idf4aed1acc4f0ceea2c17fc6771052563aec94c1
diff --git a/libc/arch-riscv64/string/strcmp_v.S b/libc/arch-riscv64/string/strcmp_v.S
index 01e72b1..3332c83 100644
--- a/libc/arch-riscv64/string/strcmp_v.S
+++ b/libc/arch-riscv64/string/strcmp_v.S
@@ -74,7 +74,7 @@
#define vMask1 v16
#define vMask2 v17
-ENTRY(strcmp_v)
+ENTRY(strcmp)
# increase the lmul using the following sequences:
# 1/2, 1/2, 1, 2, 4, 4, 4, ...
@@ -166,4 +166,4 @@
sub iResult, iTemp1, iTemp2
ret
-END(strcmp_v)
+END(strcmp)