This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH obv] Use range-based for loop in remote_add_target_side_commands


FYI, I just pushed this as obvious.

gdb/ChangeLog:

	* remote.c (remote_add_target_side_commands): Use range-based
	for loop.
---
 gdb/ChangeLog | 5 +++++
 gdb/remote.c  | 4 +---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 368b24c93e..ccca5bfbe3 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2017-03-03  Simon Marchi  <simon.marchi@ericsson.com>
+
+	* remote.c (remote_add_target_side_commands): Use range-based
+	for loop.
+
 2017-03-03  Yao Qi  <yao.qi@linaro.org>
 
 	PR gdb/21165
diff --git a/gdb/remote.c b/gdb/remote.c
index 5da8319823..2f34c4c300 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -9690,10 +9690,8 @@ remote_add_target_side_commands (struct gdbarch *gdbarch,
 
   /* Concatenate all the agent expressions that are commands into the
      cmds parameter.  */
-  for (int ix = 0; ix < bp_tgt->tcommands.size (); ix++)
+  for (agent_expr *aexpr : bp_tgt->tcommands)
     {
-      struct agent_expr *aexpr = bp_tgt->tcommands[ix];
-
       sprintf (buf, "X%x,", aexpr->len);
       buf += strlen (buf);
       for (int i = 0; i < aexpr->len; ++i)
-- 
2.11.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]