From patchwork Thu Jun 4 16:31:01 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 7041 Received: (qmail 35834 invoked by alias); 4 Jun 2015 16:31:14 -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 35823 invoked by uid 89); 4 Jun 2015 16:31:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f46.google.com Received: from mail-pa0-f46.google.com (HELO mail-pa0-f46.google.com) (209.85.220.46) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 04 Jun 2015 16:31:12 +0000 Received: by padjw17 with SMTP id jw17so32791873pad.2 for ; Thu, 04 Jun 2015 09:31:10 -0700 (PDT) X-Received: by 10.70.89.102 with SMTP id bn6mr71105318pdb.48.1433435470510; Thu, 04 Jun 2015 09:31:10 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by mx.google.com with ESMTPSA id de2sm4330368pdb.15.2015.06.04.09.31.08 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 04 Jun 2015 09:31:09 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH OBV] Regenerate gdbarch.c to sync with gdbarch.sh Date: Thu, 4 Jun 2015 17:31:01 +0100 Message-Id: <1433435461-27867-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes When I do something else, I find that gdbarch.c isn't sync'ed with gdbarch.sh. This patch just moves some statements on stack_frame_destroyed_p some lines below. I'll push it in. gdb: 2015-06-04 Yao Qi * gdbarch.c: Regenerate it. --- gdb/ChangeLog | 4 ++++ gdb/gdbarch.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3276f30..e8de369 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2015-06-04 Yao Qi + + * gdbarch.c: Regenerate it. + 2015-06-03 Jan Kratochvil * arch-utils.c (default_infcall_munmap): New. diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index ebff510..cd82487 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -1023,9 +1023,6 @@ gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file) "gdbarch_dump: have_nonsteppable_watchpoint = %s\n", plongest (gdbarch->have_nonsteppable_watchpoint)); fprintf_unfiltered (file, - "gdbarch_dump: stack_frame_destroyed_p = <%s>\n", - host_address_to_string (gdbarch->stack_frame_destroyed_p)); - fprintf_unfiltered (file, "gdbarch_dump: in_solib_return_trampoline = <%s>\n", host_address_to_string (gdbarch->in_solib_return_trampoline)); fprintf_unfiltered (file, @@ -1302,6 +1299,9 @@ gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file) "gdbarch_dump: stabs_argument_has_addr = <%s>\n", host_address_to_string (gdbarch->stabs_argument_has_addr)); fprintf_unfiltered (file, + "gdbarch_dump: stack_frame_destroyed_p = <%s>\n", + host_address_to_string (gdbarch->stack_frame_destroyed_p)); + fprintf_unfiltered (file, "gdbarch_dump: stap_gdb_register_prefix = %s\n", pstring (gdbarch->stap_gdb_register_prefix)); fprintf_unfiltered (file,