]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
jit/cache: Remove support for IRIX.
authorBruno Haible <bruno@clisp.org>
Wed, 10 Sep 2025 21:09:05 +0000 (23:09 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 10 Sep 2025 21:09:17 +0000 (23:09 +0200)
* lib/jit/cache.h: Remove code for IRIX.

ChangeLog
lib/jit/cache.h

index bd34519c2c448bd3cee6b77f3fe4d81e756ff1e4..2395469b059be50254a8c717d3b7edfe498312ab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2025-09-10  Bruno Haible  <bruno@clisp.org>
 
+       jit/cache: Remove support for IRIX.
+       * lib/jit/cache.h: Remove code for IRIX.
+
        intprops, stdckdint-h: Remove support for IRIX.
        * lib/intprops-internal.h (_GL_INT_NEGATE_CONVERT): Remove macro.
        (_GL_EXPR_SIGNED, _GL_INT_MAXIMUM): Use _GL_INT_CONVERT instead.
index 755d3e3bf11edae418e9c180066168403a2e1038..5f8cb47326cb6e7d670b013aeef8bfb447e644a1 100644 (file)
@@ -31,9 +31,6 @@
 #if defined _AIX
 # include <sys/cache.h>
 #endif
-#if defined __sgi
-# include <sys/cachectl.h>
-#endif
 #if defined __sun
 # include <stddef.h>
 #endif
@@ -76,9 +73,6 @@ clear_cache (void *start, void *end)
 #elif defined _AIX
   /* AIX.  */
   _sync_cache_range (start, (char *) end - (char *) start);
-#elif defined __sgi
-  /* IRIX.  */
-  cacheflush (start, (char *) end - (char *) start, ICACHE);
 #elif defined __sun
   /* Solaris.  */
   extern void sync_instruction_memory (char *, size_t);