aboutsummaryrefslogtreecommitdiff
path: root/gdb/infrun.c
diff options
context:
space:
mode:
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-08-20 14:23:34 +0200
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-08-20 14:26:55 +0200
commit33bf4c5c10d246543c7a9a8ba4bbbe173d7f3367 (patch)
treeac4701266d3afc69d62030de68958e84825c722c /gdb/infrun.c
parent44466e45c51b1c68ed2f95f86bcdb1f18f08b380 (diff)
downloadgdb-33bf4c5c10d246543c7a9a8ba4bbbe173d7f3367.zip
gdb-33bf4c5c10d246543c7a9a8ba4bbbe173d7f3367.tar.gz
gdb-33bf4c5c10d246543c7a9a8ba4bbbe173d7f3367.tar.bz2
gdb: fix typo "breapoint" -> "breakpoint"
gdb/ChangeLog: 2020-08-20 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> * infrun.c (process_event_stop_test): Fix typo "breapoint". gdb/testsuite/ChangeLog: 2020-08-20 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> * gdb.base/print-file-var.exp: Fix typo "breapoint". * gdb.trace/strace.exp: Ditto.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r--gdb/infrun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c
index 7be1fed..66f5020 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -6670,7 +6670,7 @@ process_event_stop_test (struct execution_control_state *ecs)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
stop_print_frame = 1;
- /* Assume the thread stopped for a breapoint. We'll still check
+ /* Assume the thread stopped for a breakpoint. We'll still check
whether a/the breakpoint is there when the thread is next
resumed. */
ecs->event_thread->stepping_over_breakpoint = 1;
@@ -6683,7 +6683,7 @@ process_event_stop_test (struct execution_control_state *ecs)
fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
stop_print_frame = 0;
- /* Assume the thread stopped for a breapoint. We'll still check
+ /* Assume the thread stopped for a breakpoint. We'll still check
whether a/the breakpoint is there when the thread is next
resumed. */
ecs->event_thread->stepping_over_breakpoint = 1;