about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-03-26 18:15:10 +0100
committerptitSeb <sebastien.chev@gmail.com>2025-03-26 18:15:10 +0100
commit95d6106e3a73837d7fe685f71b9a0bbd2196edc8 (patch)
treedd49a7296b629680c12d11a91ff1a18b9884fe9a /src
parent5fb1ee033e630d875e0bc2f46f008caba002150f (diff)
downloadbox64-95d6106e3a73837d7fe685f71b9a0bbd2196edc8.tar.gz
box64-95d6106e3a73837d7fe685f71b9a0bbd2196edc8.zip
[ARM64_DYNAREC] Commented a message that doesn't seems relevent
Diffstat (limited to 'src')
-rw-r--r--src/dynarec/arm64/dynarec_arm64_functions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dynarec/arm64/dynarec_arm64_functions.c b/src/dynarec/arm64/dynarec_arm64_functions.c
index 7af0a97c..dbc084dd 100644
--- a/src/dynarec/arm64/dynarec_arm64_functions.c
+++ b/src/dynarec/arm64/dynarec_arm64_functions.c
@@ -587,8 +587,8 @@ void neoncacheUnwind(neoncache_t* cache)
                     reg = reg - 8 + SCRATCH0;
                 else
                     reg = reg + EMM0;
-                if(cache->neoncache[reg].v)
-                    printf_log(LOG_INFO, "Warning, recreating YMM%d on non empty slot %s", i, getCacheName(cache->neoncache[reg].t, cache->neoncache[reg].n));
+                //if(cache->neoncache[reg].v)   // this is normal when a ymm is purged to make space for another one
+                //    printf_log(LOG_INFO, "Warning, recreating YMM%d on non empty slot %s", i, getCacheName(cache->neoncache[reg].t, cache->neoncache[reg].n));
                 cache->neoncache[reg].t = (cache->ymm_write&(1<<i))?NEON_CACHE_YMMW:NEON_CACHE_YMMR;
                 cache->neoncache[reg].n = i;
             }