btrace: fix void return
authorMarkus Metzger <markus.t.metzger@intel.com>
Thu, 8 Oct 2015 07:00:57 +0000 (09:00 +0200)
committerMarkus Metzger <markus.t.metzger@intel.com>
Thu, 8 Oct 2015 07:00:57 +0000 (09:00 +0200)
record_btrace_resume returns the void return from the to_resume method of the
target beneath.  Split this into calling to_resume and return.

gdb/
* record-btrace.c (record_btrace_resume): Fix void return.

gdb/ChangeLog
gdb/record-btrace.c

index 84a4114..d73f207 100644 (file)
@@ -1,3 +1,7 @@
+2015-10-08  Markus Metzger  <markus.t.metzger@intel.com>
+
+       * record-btrace.c (record_btrace_resume): Fix void return.
+
 2015-10-07  Yao Qi  <yao.qi@linaro.org>
 
        * aarch64-tdep.c: Include opcode/aarch64.h.
index a9eb7fe..3f068e2 100644 (file)
@@ -1910,7 +1910,8 @@ record_btrace_resume (struct target_ops *ops, ptid_t ptid, int step,
       && !record_btrace_is_replaying (ops, minus_one_ptid))
     {
       ops = ops->beneath;
-      return ops->to_resume (ops, ptid, step, signal);
+      ops->to_resume (ops, ptid, step, signal);
+      return;
     }
 
   /* Compute the btrace thread flag for the requested move.  */