diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-08-16 19:57:19 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-08-16 19:57:19 +0000 |
commit | 7be570e7ce77920e2e628a03bdfe2d295fc2568f (patch) | |
tree | a49512270bb021f1d5171b362dc973e28c97ca94 /gdb/arm-tdep.c | |
parent | ed288bb597072176e84fc8279707a3f2f475779b (diff) | |
download | gdb-7be570e7ce77920e2e628a03bdfe2d295fc2568f.zip gdb-7be570e7ce77920e2e628a03bdfe2d295fc2568f.tar.gz gdb-7be570e7ce77920e2e628a03bdfe2d295fc2568f.tar.bz2 |
import gdb-1999-08-16 snapshot
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 994e48f..7598a8d 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -186,8 +186,8 @@ arm_frameless_function_invocation (fi) int frameless; func_start = (get_pc_function_start ((fi)->pc) + FUNCTION_START_OFFSET); - after_prologue = func_start; - SKIP_PROLOGUE (after_prologue); + after_prologue = SKIP_PROLOGUE (func_start); + /* There are some frameless functions whose first two instructions follow the standard APCS form, in which case after_prologue will be func_start + 8. */ @@ -1201,9 +1201,6 @@ set_disassembly_flavor_sfunc (args, from_tty, c) struct cmd_list_element *c; { set_disassembly_flavor (); - - if (disassembly_flavor_hook != NULL) - disassembly_flavor_hook(args, from_tty); } static void |