2010-10-28 Hui Zhu <teawater@gmail.com>
authorHui Zhu <teawater@gmail.com>
Thu, 28 Oct 2010 03:38:36 +0000 (03:38 +0000)
committerHui Zhu <teawater@gmail.com>
Thu, 28 Oct 2010 03:38:36 +0000 (03:38 +0000)
* tracepoint.c (trace_save): Change utp->actions to
utp->step_actions.

gdb/ChangeLog
gdb/tracepoint.c

index 8dcbd1a..f8001b6 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-28  Hui Zhu  <teawater@gmail.com>
+
+       * tracepoint.c (trace_save): Change utp->actions to
+       utp->step_actions.
+
 2010-10-26  Joel Brobecker  <brobecker@adacore.com>
 
        * (_FILE_OFFSET_BITS): Fix typo in comment.
index 93fb5db..58fc8d4 100644 (file)
@@ -2734,7 +2734,7 @@ trace_save (const char *filename, int target_does_save)
       for (a = 0; VEC_iterate (char_ptr, utp->actions, a, act); ++a)
        fprintf (fp, "tp A%x:%s:%s\n",
                 utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act);
-      for (a = 0; VEC_iterate (char_ptr, utp->actions, a, act); ++a)
+      for (a = 0; VEC_iterate (char_ptr, utp->step_actions, a, act); ++a)
        fprintf (fp, "tp S%x:%s:%s\n",
                 utp->number, phex_nz (utp->addr, sizeof (utp->addr)), act);
       if (utp->at_string)