From patchwork Wed Aug 9 10:23:42 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 22004 Received: (qmail 15763 invoked by alias); 9 Aug 2017 10:23:54 -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 15731 invoked by uid 89); 9 Aug 2017 10:23:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.4 required=5.0 tests=BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_SPAM, SPF_PASS autolearn=ham version=3.3.2 spammy=H*r:sk:static. X-HELO: mail-it0-f45.google.com Received: from mail-it0-f45.google.com (HELO mail-it0-f45.google.com) (209.85.214.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 09 Aug 2017 10:23:51 +0000 Received: by mail-it0-f45.google.com with SMTP id m34so16928633iti.1 for ; Wed, 09 Aug 2017 03:23:51 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=Qk7LcyZuE5kE9EKzg2b21ggHYZKSWUQo9dOEpvBnFcw=; b=sIL5SXXs/Ak9QQ45n8QOCEsoc0bJWR9V0wK/7o/lVTOLDxEpF98fw2isqB5ZRW6Ss0 IZ5fL0zHQ8tPDUkyYpHcn6cJ6GI2/Tv7cXPXFlM4Y4LzwAYUds92U5fUEzk7mRADSgIa rjISTuMlYcpkKpgiBUSON9T/oyUoeGptV1finPMb6rsA6yXbvaZsZO8TwolS9sowz2NK dqKOdiDPM8tPmt8QjiUxy8q/ME3whhDFKODssSBptrWv8G3/AkwTf3ocZpy/K7IvX+Q0 p210CkOJDkUb/UvBYIx9836zAACX0ppg7thB4onzwpg+ATHZBW7t+hHO4Zd5m6MJ3Gzt QP2Q== X-Gm-Message-State: AHYfb5jtP75nBWfUYZkHTxpzKcZ0McAg7pazwp85N/3IKwCKsqVt1hBC tzy6WRtsKB3VKBN5 X-Received: by 10.36.239.4 with SMTP id i4mr6150406ith.148.1502274230090; Wed, 09 Aug 2017 03:23:50 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (static.42.136.251.148.clients.your-server.de. [148.251.136.42]) by smtp.gmail.com with ESMTPSA id 6sm1866039itj.6.2017.08.09.03.23.48 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 09 Aug 2017 03:23:49 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Cc: jan.kratochvil@redhat.com Subject: [PATCH OBV] Add missing ChangeLog entry in 8.0 branch Date: Wed, 9 Aug 2017 11:23:42 +0100 Message-Id: <1502274222-10951-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes The changelog entry for cd33a03d183a268b83ccbcae07f3788308e8d9f4 is missing. This patch adds it. --- gdb/ChangeLog | 10 ++++++++++ gdb/testsuite/ChangeLog | 6 ++++++ 2 files changed, 16 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 11ff1c9..8b00316 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,15 @@ 2017-07-25 Yao Qi + PR gdb/21555 + * arch-utils.c (gdbarch_skip_prologue_noexcept): New function. + * arch-utils.h (gdbarch_skip_prologue_noexcept): Declare. + * infrun.c: Include arch-utils.h + (handle_step_into_function): Call gdbarch_skip_prologue_noexcept. + (handle_step_into_function_backward): Likewise. + * symtab.c (skip_prologue_sal): Likewise. + +2017-07-25 Yao Qi + PR tdep/21717 * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update condition for FPSCR. diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 1ca1413a..689e44e 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2017-07-25 Yao Qi + + PR gdb/21555 + * gdb.base/reread.exp: Wrap the whole test with two kinds of + compilation flags, with -fPIE and without -fPIE. + 2017-05-18 Thomas Preud'homme * gdb.base/float.exp: Expect GDB prompt for targets without FPU.