From patchwork Mon Dec 2 14:24:06 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Simon Marchi (Code Review)" X-Patchwork-Id: 36422 Received: (qmail 26698 invoked by alias); 2 Dec 2019 14:24:35 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 26644 invoked by uid 89); 2 Dec 2019 14:24:32 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.6 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3 autolearn=ham version=3.3.1 spammy= X-HELO: mx1.osci.io Received: from polly.osci.io (HELO mx1.osci.io) (8.43.85.229) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 02 Dec 2019 14:24:10 +0000 Received: by mx1.osci.io (Postfix, from userid 994) id 4C96F202E5; Mon, 2 Dec 2019 09:24:08 -0500 (EST) Received: from gnutoolchain-gerrit.osci.io (gnutoolchain-gerrit.osci.io [8.43.85.239]) by mx1.osci.io (Postfix) with ESMTP id 13D88202E5; Mon, 2 Dec 2019 09:24:07 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by gnutoolchain-gerrit.osci.io (Postfix) with ESMTP id DC66B2816F; Mon, 2 Dec 2019 09:24:06 -0500 (EST) X-Gerrit-PatchSet: 2 Date: Mon, 2 Dec 2019 09:24:06 -0500 From: "Sourceware to Gerrit sync (Code Review)" To: Luis Machado , gdb-patches@sourceware.org Auto-Submitted: auto-generated X-Gerrit-MessageType: newpatchset Subject: [pushed] Remove stale FIXME comment X-Gerrit-Change-Id: I2436ca4ae4a6741012cafe8123325f738b692c9c X-Gerrit-Change-Number: 732 X-Gerrit-ChangeURL: X-Gerrit-Commit: 7532a164d5391fe4832da9f7e492dd0dd6da6dce In-Reply-To: References: Reply-To: noreply@gnutoolchain-gerrit.osci.io, luis.machado@linaro.org, gdb-patches@sourceware.org MIME-Version: 1.0 Content-Disposition: inline User-Agent: Gerrit/3.0.3-79-g83ff7f88f1 Message-Id: <20191202142406.DC66B2816F@gnutoolchain-gerrit.osci.io> The original change was created by Luis Machado. Change URL: https://gnutoolchain-gerrit.osci.io/r/c/binutils-gdb/+/732 ...................................................................... Remove stale FIXME comment While debugging something, i noticed this odd FIXME comment. It seems stale and therefore here's a patch removing it. gdb/ChangeLog: 2019-12-02 Luis Machado * infrun.c (follow_fork_inferior): Remove outdated FIXME comment. Change-Id: I2436ca4ae4a6741012cafe8123325f738b692c9c --- M gdb/ChangeLog M gdb/infrun.c 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1465c75..b8cb710 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2019-12-02 Luis Machado + + * infrun.c (follow_fork_inferior): Remove outdated FIXME comment. + 2019-12-01 Andrew Burgess * dwarf2read.c (read_tag_string_type): Read the fields required to diff --git a/gdb/infrun.c b/gdb/infrun.c index 3718674..6a346d6 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -432,7 +432,6 @@ Can not resume the parent process over vfork in the foreground while\n\ holding the child stopped. Try \"set detach-on-fork\" or \ \"set schedule-multiple\".\n")); - /* FIXME output string > 80 columns. */ return 1; }