]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/fns.c (Fstring_lessp): Port to RISCs.
authorPo Lu <luangruo@yahoo.com>
Sat, 1 Apr 2023 06:23:32 +0000 (14:23 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 1 Apr 2023 06:23:52 +0000 (14:23 +0800)
src/fns.c

index 94505eda4449472ba7eac8993dca2c15c63cdd25..90bb3fac17853e849285a86430dfa09d0c063abd 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -506,7 +506,7 @@ Symbols are also allowed; their print names are used instead.  */)
       /* String data is normally allocated with word alignment, but
         there are exceptions (notably pure strings) so we restrict the
         wordwise skipping to safe architectures.  */
-      if (HAVE_FAST_UNALIGNED_ACCESS)
+#ifdef HAVE_FAST_UNALIGNED_ACCESS
        {
          /* First compare entire machine words.  */
          int ws = sizeof (size_t);
@@ -516,6 +516,7 @@ Symbols are also allowed; their print names are used instead.  */)
                                    == load_unaligned_size_t (w2 + b))
            b += ws;
        }
+#endif
 
       /* Scan forward to the differing byte.  */
       while (b < nb && SREF (string1, b) == SREF (string2, b))