summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2008-10-07 19:01:26 +0000
committerMichael Snyder <msnyder@vmware.com>2008-10-07 19:01:26 +0000
commit0d8328aee82dc669c7eced6a530752c787f016ec (patch)
treeddf1cfa58dc4cbf2e196e46c2180f9fad48e9a3c
parent80816afe10dd49bc3ec369035fc5b121bc3aedb5 (diff)
downloadbinutils-gdb-0d8328aee82dc669c7eced6a530752c787f016ec.tar.gz
2008-10-07 Michael Snyder <msnyder@vmware.com>
* infrun.c (stepped_into_function): Rename handle_step_into_function. (stepped_into_function_backward): Rename handle_step_into_function_backward.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/infrun.c15
2 files changed, 10 insertions, 9 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6678d71b9ee..e5ea04e1ee9 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2008-10-07 Michael Snyder <msnyder@vmware.com>
+ * infrun.c (stepped_into_function): Rename handle_step_into_function.
+ (stepped_into_function_backward):
+ Rename handle_step_into_function_backward.
+
* reverse.c: Update copyright.
(exec_reverse_once): Add function header comment.
(_initialize_reverse): Use i18n macros for set exec-direction.
diff --git a/gdb/infrun.c b/gdb/infrun.c
index aa1f9f0780d..4bd620976f4 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -1468,8 +1468,8 @@ void init_execution_control_state (struct execution_control_state *ecs);
void handle_inferior_event (struct execution_control_state *ecs);
-static void stepped_into_function (struct execution_control_state *ecs);
-static void stepped_into_function_backward (struct execution_control_state *ecs);
+static void handle_step_into_function (struct execution_control_state *ecs);
+static void handle_step_into_function_backward (struct execution_control_state *ecs);
static void insert_step_resume_breakpoint_at_frame (struct frame_info *step_frame);
static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
static void insert_step_resume_breakpoint_at_sal (struct symtab_and_line sr_sal,
@@ -3244,13 +3244,10 @@ infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME (!gdbarch_get_longjmp_target)\n");
tmp_sal = find_pc_line (ecs->stop_func_start, 0);
if (tmp_sal.line != 0)
{
- /* Find start of appropriate source line (either first or
- last line in callee, depending on execution
- direction). */
if (target_get_execution_direction () == EXEC_REVERSE)
- stepped_into_function_backward (ecs);
+ handle_step_into_function_backward (ecs);
else
- stepped_into_function (ecs);
+ handle_step_into_function (ecs);
return;
}
}
@@ -3588,7 +3585,7 @@ currently_stepping (struct thread_stepping_state *tss)
it. */
static void
-stepped_into_function (struct execution_control_state *ecs)
+handle_step_into_function (struct execution_control_state *ecs)
{
struct symtab *s;
struct symtab_and_line stop_func_sal, sr_sal;
@@ -3664,7 +3661,7 @@ stepped_into_function (struct execution_control_state *ecs)
last line of code in it. */
static void
-stepped_into_function_backward (struct execution_control_state *ecs)
+handle_step_into_function_backward (struct execution_control_state *ecs)
{
struct symtab *s;
struct symtab_and_line stop_func_sal, sr_sal;