From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id NfrcCcxQ7V87GwAAWB0awg (envelope-from ) for ; Wed, 30 Dec 2020 23:17:16 -0500 Received: by simark.ca (Postfix, from userid 112) id 16F471F0AA; Wed, 30 Dec 2020 23:17:16 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 2ED681E965 for ; Wed, 30 Dec 2020 23:17:15 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9E2F0385800D; Thu, 31 Dec 2020 04:17:14 +0000 (GMT) Received: from rock.gnat.com (rock.gnat.com [IPv6:2620:20:4000:0:a9e:1ff:fe9b:1d1]) by sourceware.org (Postfix) with ESMTP id A7108385800D for ; Thu, 31 Dec 2020 04:17:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A7108385800D Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=adacore.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=brobecker@adacore.com Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 5C5671179F2; Wed, 30 Dec 2020 23:17:11 -0500 (EST) X-Virus-Scanned: Debian amavisd-new at gnat.com Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 7cQHNSTRyMgl; Wed, 30 Dec 2020 23:17:11 -0500 (EST) Received: from float.home (localhost.localdomain [127.0.0.1]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by rock.gnat.com (Postfix) with ESMTPS id EE0371179E9; Wed, 30 Dec 2020 23:17:10 -0500 (EST) Received: by float.home (Postfix, from userid 1000) id 6DACCA1608; Thu, 31 Dec 2020 08:17:05 +0400 (+04) Date: Thu, 31 Dec 2020 08:17:05 +0400 From: Joel Brobecker To: "Pavel I. Kryukov" Subject: Re: [PATCH] Include to sim-main.c for abort() declaration Message-ID: <20201231041705.GA62116@adacore.com> References: <20201227104823.85-1-kryukov@frtk.ru> <20201228155813.GR2945@embecosm.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="9jxsPFA5p3P2qPhR" Content-Disposition: inline In-Reply-To: X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" --9jxsPFA5p3P2qPhR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello Pavel, > Could you please push it? I don't have such permissions. I pushed the patch, after having made some minor editorial modifications to the commit message and ChangeLog entry (added a period at the end of the sentence describing the change). Attached is what just got pushed. -- Joel --9jxsPFA5p3P2qPhR Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-sim-mips-sim-main.c-Include-stdlib.h-for-abort-decla.patch" >From 382bc56bc702608c2f493f743c2e990435a7a74c Mon Sep 17 00:00:00 2001 From: "Pavel I. Kryukov" Date: Thu, 31 Dec 2020 08:14:36 +0400 Subject: [PATCH] sim/mips/sim-main.c: Include (for abort() declaration) sim/mips/ChangeLog: * sim-main.c: Include . --- sim/mips/ChangeLog | 4 ++++ sim/mips/sim-main.c | 1 + 2 files changed, 5 insertions(+) diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 8164bb28b41..a3813d43511 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2020-12-31 Pavel I. Kryukov (tiny change) + + * sim-main.c: Include . + 2020-12-14 Pavel I. Kryukov (tiny change) * cp1.c: Include . diff --git a/sim/mips/sim-main.c b/sim/mips/sim-main.c index d61ce61fc88..620f4b2990b 100644 --- a/sim/mips/sim-main.c +++ b/sim/mips/sim-main.c @@ -22,6 +22,7 @@ #include "sim-main.h" #include "sim-assert.h" +#include /*---------------------------------------------------------------------------*/ /*-- simulator engine -------------------------------------------------------*/ -- 2.25.1 --9jxsPFA5p3P2qPhR--