Change the modification of ZSTD_wildcopy()
diff --git a/lib/common/zstd_internal.h b/lib/common/zstd_internal.h
index 009d842..3bc7e55 100644
--- a/lib/common/zstd_internal.h
+++ b/lib/common/zstd_internal.h
@@ -285,14 +285,19 @@
          * at that point it is more likely to have a high trip count.
          */
 #ifndef __aarch64__
+        do {
+            COPY16(op, ip);
+        }
+        while (op < oend);
+#else
         COPY16(op, ip);
         if (op >= oend) return;
-#endif
         do {
             COPY16(op, ip);
             COPY16(op, ip);
         }
         while (op < oend);
+#endif
     }
 }