diff options
Diffstat (limited to 'src/dynarec/arm64/dynarec_arm64_functions.c')
| -rw-r--r-- | src/dynarec/arm64/dynarec_arm64_functions.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dynarec/arm64/dynarec_arm64_functions.c b/src/dynarec/arm64/dynarec_arm64_functions.c index 62523c3e..4ee331ab 100644 --- a/src/dynarec/arm64/dynarec_arm64_functions.c +++ b/src/dynarec/arm64/dynarec_arm64_functions.c @@ -561,12 +561,13 @@ void neoncacheUnwind(neoncache_t* cache) break; case NEON_CACHE_XMMR: case NEON_CACHE_XMMW: - case NEON_CACHE_YMMR: - case NEON_CACHE_YMMW: cache->ssecache[cache->neoncache[i].n].reg = i; cache->ssecache[cache->neoncache[i].n].write = (cache->neoncache[i].t==NEON_CACHE_XMMW)?1:0; ++cache->fpu_reg; break; + case NEON_CACHE_YMMR: + case NEON_CACHE_YMMW: + break; case NEON_CACHE_ST_F: case NEON_CACHE_ST_D: case NEON_CACHE_ST_I64: |