From patchwork Thu Oct 26 08:53:18 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 23830 Received: (qmail 68780 invoked by alias); 26 Oct 2017 08:53:29 -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 68764 invoked by uid 89); 26 Oct 2017 08:53:25 -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-wm0-f66.google.com Received: from mail-wm0-f66.google.com (HELO mail-wm0-f66.google.com) (74.125.82.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 26 Oct 2017 08:53:24 +0000 Received: by mail-wm0-f66.google.com with SMTP id z3so6658592wme.5 for ; Thu, 26 Oct 2017 01:53:24 -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:subject:date:message-id; bh=VoOtBg9JZLz75saWzG65IknBOYnFUEw7jVM4DwdDIZA=; b=IIQqQYxgIvxlMZRIv18x4tL9J+N1wk4S7CHRIbGaIxSD3irNm2XYW5sdCnOk6yT4od Cx5XB00Q815w/Wk6ZNVtM/lOR9jYy2NyxbX3q3OW9lirL08TpMIIp2Hy5kaC2U90sapF LVKJDArjVim7HzTcUB3GHxfRMxQmg0plGoz1hoMZsyJppua4bjii+HfZGIsbqo3zXf+m +8PnaK1OsxKGHoxjY9M9QrXnLAYbKRVQWdnUjng+A8wy7VYCTgXAuwdNcm5E+0VN7QZG YB1ffnqinNs/U0Q+/jBoRWlZmr2JIw7pDjsarx4Ze9T5z2qrvPKntMw+kUpYH5hRTQVf HN7A== X-Gm-Message-State: AMCzsaVdoyOoXt9J2tlPEKASLFNlCumoebtk3PHdB04sKWMXrr0LUmzv cVJL9O0KH6U6S+mf+D7Y0Ylfwg== X-Google-Smtp-Source: ABhQp+Q9nYwhz9pXc+jDyYmTtZ1/zDjdrfmrABfUKCuPmhc9T1R0Qk/hKhMi6CbSipsMsTbckmC51Q== X-Received: by 10.28.181.2 with SMTP id e2mr807584wmf.81.1509008002590; Thu, 26 Oct 2017 01:53:22 -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 12sm806929wmy.46.2017.10.26.01.53.21 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 26 Oct 2017 01:53:22 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH OBV] Remove regular_breakpoint_inserted_here_p declaration Date: Thu, 26 Oct 2017 09:53:18 +0100 Message-Id: <1509007998-19290-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes There is no regular_breakpoint_inserted_here_p definition at all, so this patch removes the declaration. I'll push it in. gdb: 2017-10-26 Yao Qi * breakpoint.h (regular_breakpoint_inserted_here_p): Remove. --- gdb/ChangeLog | 4 ++++ gdb/breakpoint.h | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 47a4ac5..f180b1d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2017-10-26 Yao Qi + * breakpoint.h (regular_breakpoint_inserted_here_p): Remove. + +2017-10-26 Yao Qi + * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Make aspace const. * break-catch-syscall.c (breakpoint_hit_catch_syscall): diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 63e879c..c91fcca 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -1171,9 +1171,6 @@ extern int moribund_breakpoint_here_p (const address_space *, CORE_ADDR); extern int breakpoint_inserted_here_p (const address_space *, CORE_ADDR); -extern int regular_breakpoint_inserted_here_p (struct address_space *, - CORE_ADDR); - extern int software_breakpoint_inserted_here_p (const address_space *, CORE_ADDR);