From: Jérémy Lal Date: Mon, 13 Jun 2022 07:11:34 +0000 (+0100) Subject: fix compilation error on mipsel target X-Git-Tag: archive/raspbian/18.12.1+dfsg-2+rpi1~1^2^2^2^2^2~9 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=fc186e6f0a2b548b5682b5a45498fd7c639e6f08;p=nodejs.git fix compilation error on mipsel target Last-Update: 2021-10-28 Forwarded: https://github.com/nodejs/node/issues/40624 Gbp-Pq: Topic mips Gbp-Pq: Name compilation_error.patch --- diff --git a/deps/v8/src/compiler/backend/mips/code-generator-mips.cc b/deps/v8/src/compiler/backend/mips/code-generator-mips.cc index 2b8197e7e..99d810474 100644 --- a/deps/v8/src/compiler/backend/mips/code-generator-mips.cc +++ b/deps/v8/src/compiler/backend/mips/code-generator-mips.cc @@ -4230,7 +4230,7 @@ void CodeGenerator::AssembleReturn(InstructionOperand* additional_pop_count) { } else if (FLAG_debug_code) { __ Assert(eq, AbortReason::kUnexpectedAdditionalPopValue, g.ToRegister(additional_pop_count), - Operand(static_cast(0))); + Operand(static_cast(0))); } } // Functions with JS linkage have at least one parameter (the receiver).