From 313341f93df64c7b9a396db2c1a0f4596451bc1e Mon Sep 17 00:00:00 2001 From: Falco Girgis Date: Wed, 31 Jan 2024 02:50:01 -0600 Subject: [PATCH] Trying without prefetching. --- GL/platforms/sh4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GL/platforms/sh4.h b/GL/platforms/sh4.h index 46c3513..698a8c9 100644 --- a/GL/platforms/sh4.h +++ b/GL/platforms/sh4.h @@ -24,7 +24,7 @@ #define GL_FORCE_INLINE static GL_INLINE_DEBUG #endif -#define PREFETCH(addr) __builtin_prefetch((addr)) +#define PREFETCH(addr) ((void)addr)//__builtin_prefetch((addr)) GL_FORCE_INLINE void* memcpy_fast(void *dest, const void *src, size_t len) { if(!len) {