aboutsummaryrefslogtreecommitdiff
path: root/gdb/tracepoint.c
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>2010-01-07 19:09:09 +0000
committerStan Shebs <shebs@codesourcery.com>2010-01-07 19:09:09 +0000
commit6b6218c55aa533306ba4ababfaf20411d5b73516 (patch)
tree39d64e8d0e3c3e4f52bad3823df0617fd393f395 /gdb/tracepoint.c
parent9d3b86f6f906047e31640311f6e231d46cfaf49f (diff)
downloadgdb-6b6218c55aa533306ba4ababfaf20411d5b73516.zip
gdb-6b6218c55aa533306ba4ababfaf20411d5b73516.tar.gz
gdb-6b6218c55aa533306ba4ababfaf20411d5b73516.tar.bz2
* tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r--gdb/tracepoint.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c
index 1726d5e..5d19934 100644
--- a/gdb/tracepoint.c
+++ b/gdb/tracepoint.c
@@ -2541,8 +2541,7 @@ trace_dump_command (char *args, int from_tty)
regcache = get_current_regcache ();
gdbarch = get_regcache_arch (regcache);
- stepping_frame = (t->loc->address != (regcache_read_pc (regcache)
- - gdbarch_decr_pc_after_break (gdbarch)));
+ stepping_frame = (t->loc->address != (regcache_read_pc (regcache)));
for (action = t->actions; action; action = action->next)
{