From: Jérémy Lal Date: Wed, 11 Jan 2023 16:42:19 +0000 (+0000) Subject: fix double register usage on mipsel X-Git-Tag: archive/raspbian/18.13.0+dfsg1-1+rpi1^2~7 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6af2a6a45fca108760e7a76272ea332195e6da73;p=nodejs.git fix double register usage on mipsel Forwarded: not-yet Last-Update: 2022-06-15 Gbp-Pq: Topic mips Gbp-Pq: Name mipsel_even_register_fix.patch --- diff --git a/deps/v8/src/codegen/mips/register-mips.h b/deps/v8/src/codegen/mips/register-mips.h index 26f04401b..100df9034 100644 --- a/deps/v8/src/codegen/mips/register-mips.h +++ b/deps/v8/src/codegen/mips/register-mips.h @@ -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) \