fix double register usage on mipsel
authorJérémy Lal <kapouer@melix.org>
Sun, 3 Dec 2023 21:41:14 +0000 (22:41 +0100)
committerJérémy Lal <kapouer@melix.org>
Sun, 3 Dec 2023 21:41:14 +0000 (22:41 +0100)
Forwarded: not-yet
Last-Update: 2022-06-15

Gbp-Pq: Topic mips
Gbp-Pq: Name mipsel_even_register_fix.patch

deps/v8/src/codegen/mips/register-mips.h

index 26f04401b92fc27cfc25d159d0aad77ccd710a3c..100df9034d40ec440b12f0a177bfdbf339978a32 100644 (file)
@@ -32,9 +32,8 @@ namespace internal {
 // Currently, MIPS just use even float point register, except
 // for C function param registers.
 #define DOUBLE_USE_REGISTERS(V)                           \
-  V(f0)  V(f2)  V(f4)  V(f6)  V(f8)  V(f10) V(f12) V(f13) \
-  V(f14) V(f15) V(f16) V(f18) V(f20) V(f22) V(f24) V(f26) \
-  V(f28) V(f30)
+  V(f0)  V(f2)  V(f4)  V(f6)  V(f8)  V(f10) V(f12) V(f14) \
+  V(f16) V(f18) V(f20) V(f22) V(f24) V(f26) V(f28) V(f30)
 
 #define FLOAT_REGISTERS DOUBLE_REGISTERS
 #define SIMD128_REGISTERS(V)                              \