From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 67586 invoked by alias); 2 Jul 2015 16:01:39 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 67576 invoked by uid 89); 2 Jul 2015 16:01:38 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 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-f51.google.com Received: from mail-pa0-f51.google.com (HELO mail-pa0-f51.google.com) (209.85.220.51) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 02 Jul 2015 16:01:37 +0000 Received: by paceq1 with SMTP id eq1so42466350pac.3 for ; Thu, 02 Jul 2015 09:01:35 -0700 (PDT) X-Received: by 10.66.159.1 with SMTP id wy1mr69104874pab.103.1435852895737; Thu, 02 Jul 2015 09:01:35 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by mx.google.com with ESMTPSA id wa4sm6156894pab.17.2015.07.02.09.01.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 02 Jul 2015 09:01:35 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH OBV] Fix typo in aarch64_linux_insert_hw_breakpoint Date: Thu, 02 Jul 2015 16:01:00 -0000 Message-Id: <1435852891-11513-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00083.txt.bz2 It should be "insert_hw_breakpoint" rather than "insert_hw_watchpoint". I'll push it in. gdb: 2015-07-02 Yao Qi * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix typo in the debugging message. --- gdb/ChangeLog | 5 +++++ gdb/aarch64-linux-nat.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5d0c7f5..97d0079 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-07-02 Yao Qi + + * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix + typo in the debugging message. + 2015-07-02 Markus Metzger * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h. diff --git a/gdb/aarch64-linux-nat.c b/gdb/aarch64-linux-nat.c index 7f169a6..2cd20d1 100644 --- a/gdb/aarch64-linux-nat.c +++ b/gdb/aarch64-linux-nat.c @@ -1358,7 +1358,7 @@ aarch64_linux_insert_hw_breakpoint (struct target_ops *self, = aarch64_get_debug_reg_state (ptid_get_pid (inferior_ptid)); aarch64_show_debug_reg_state (state, - "insert_hw_watchpoint", addr, len, type); + "insert_hw_breakpoint", addr, len, type); } return ret; -- 1.9.1