diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/target.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b9d4fa6..064648f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2014-07-16 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) <to_delete_record>: Reformat + comment. + +2014-07-16 Tom Tromey <tromey@redhat.com> + * target-delegates.c: Rebuild. 2014-07-15 Pierre Langlois <pierre.langlois@embecosm.com> diff --git a/gdb/target.h b/gdb/target.h index 8bf160c..8c8ce00 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1029,7 +1029,8 @@ struct target_ops void (*to_save_record) (struct target_ops *, const char *filename) TARGET_DEFAULT_NORETURN (tcomplain ()); - /* Delete the recorded execution trace from the current position onwards. */ + /* Delete the recorded execution trace from the current position + onwards. */ void (*to_delete_record) (struct target_ops *) TARGET_DEFAULT_NORETURN (tcomplain ()); |