summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Henderson2015-09-15 20:45:07 +0200
committerEduardo Habkost2015-10-02 21:22:01 +0200
commitdd941cdcfec536aad6a310a153778142ed9f3e92 (patch)
tree93eba1aa94870630382aa675575e6373b2c3762e
parenttarget-i386: Move breakpoint related functions to new file (diff)
downloadqemu-dd941cdcfec536aad6a310a153778142ed9f3e92.tar.gz
qemu-dd941cdcfec536aad6a310a153778142ed9f3e92.tar.xz
qemu-dd941cdcfec536aad6a310a153778142ed9f3e92.zip
target-i386: Make check_hw_breakpoints static
The function is now only used from within a single file. Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
-rw-r--r--target-i386/bpt_helper.c2
-rw-r--r--target-i386/cpu.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/target-i386/bpt_helper.c b/target-i386/bpt_helper.c
index 6f6537d58c..c071c24782 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 dc7654d370..92426dc1f9 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 */