From: Jérémy Lal Date: Tue, 15 Nov 2022 03:51:54 +0000 (+0000) Subject: fix double register usage on mipsel X-Git-Tag: archive/raspbian/18.12.1+dfsg-2+rpi1~8 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ed98c7318724d4a572c2e076e3711c19f01742cc;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) \