From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39484) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgcHY-0007vE-22 for qemu-devel@nongnu.org; Mon, 28 Sep 2015 13:32:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZgcHV-00058i-TI for qemu-devel@nongnu.org; Mon, 28 Sep 2015 13:32:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41613) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgcHV-00058Y-P9 for qemu-devel@nongnu.org; Mon, 28 Sep 2015 13:32:05 -0400 From: Eduardo Habkost Date: Mon, 28 Sep 2015 14:31:38 -0300 Message-Id: <1443461499-5843-7-git-send-email-ehabkost@redhat.com> In-Reply-To: <1443461499-5843-1-git-send-email-ehabkost@redhat.com> References: <1443461499-5843-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PULL 6/7] target-i386: Make check_hw_breakpoints static List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-devel@nongnu.org, Paolo Bonzini , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Richard Henderson From: Richard Henderson The function is now only used from within a single file. Reviewed-by: Eduardo Habkost Signed-off-by: Richard Henderson Signed-off-by: Eduardo Habkost --- target-i386/bpt_helper.c | 2 +- target-i386/cpu.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/target-i386/bpt_helper.c b/target-i386/bpt_helper.c index 6f6537d..c071c24 100644 --- a/target-i386/bpt_helper.c +++ b/target-i386/bpt_helper.c @@ -79,7 +79,7 @@ void hw_breakpoint_remove(CPUX86State *env, int index) } } -bool check_hw_breakpoints(CPUX86State *env, bool force_dr6_update) +static bool check_hw_breakpoints(CPUX86State *env, bool force_dr6_update) { target_ulong dr6; int reg; diff --git a/target-i386/cpu.h b/target-i386/cpu.h index dc7654d..92426dc 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1154,7 +1154,6 @@ static inline int hw_breakpoint_len(unsigned long dr7, int index) void hw_breakpoint_insert(CPUX86State *env, int index); void hw_breakpoint_remove(CPUX86State *env, int index); -bool check_hw_breakpoints(CPUX86State *env, bool force_dr6_update); void breakpoint_handler(CPUState *cs); /* will be suppressed */ -- 2.1.0