From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1936) id 4D1B83858C56; Wed, 4 May 2022 04:39:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4D1B83858C56 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: John Baldwin To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdbserver: Fix build after adding tls feature to arm tdesc. X-Act-Checkin: binutils-gdb X-Git-Author: John Baldwin X-Git-Refname: refs/heads/master X-Git-Oldrev: 6a90a4a4302de01ded2bf9547882e90656b3fc99 X-Git-Newrev: 24ef0d41ac9632ff85d3781e5852371e39661558 Message-Id: <20220504043952.4D1B83858C56@sourceware.org> Date: Wed, 4 May 2022 04:39:52 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2022 04:39:52 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D24ef0d41ac96= 32ff85d3781e5852371e39661558 commit 24ef0d41ac9632ff85d3781e5852371e39661558 Author: John Baldwin Date: Tue May 3 21:38:12 2022 -0700 gdbserver: Fix build after adding tls feature to arm tdesc. Diff: --- gdbserver/linux-arm-tdesc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdbserver/linux-arm-tdesc.cc b/gdbserver/linux-arm-tdesc.cc index 293e108a9cc..c636e6e5ea2 100644 --- a/gdbserver/linux-arm-tdesc.cc +++ b/gdbserver/linux-arm-tdesc.cc @@ -35,7 +35,7 @@ arm_linux_read_description (arm_fp_type fp_type) =20 if (tdesc =3D=3D nullptr) { - tdesc =3D arm_create_target_description (fp_type); + tdesc =3D arm_create_target_description (fp_type, false); =20 static const char *expedite_regs[] =3D { "r11", "sp", "pc", 0 }; init_target_desc (tdesc, expedite_regs);