dtrace-probe: Put semicolon after while on its own line
authorSimon Marchi <simon.marchi@ericsson.com>
Sun, 25 Jun 2017 10:49:19 +0000 (12:49 +0200)
committerSimon Marchi <simon.marchi@ericsson.com>
Sun, 25 Jun 2017 10:49:19 +0000 (12:49 +0200)
clang shows this warning.

  /home/emaisin/src/binutils-gdb/gdb/dtrace-probe.c:424:52: error: while loop has empty body [-Werror,-Wempty-body]
            while (*p++ != '\0' && p - strtab < strtab_size);
                                                            ^
  /home/emaisin/src/binutils-gdb/gdb/dtrace-probe.c:424:52: note: put the semicolon on a separate line to silence this warning

Putting the semicolon on its own line is not a big sacrifice to get rid of this
warning.  I think it's also useful to keep this, because it can catch errors
like this:

  while (something);
    {
      ...
    }

although gcc would warn about it in a different way (misleading indentation).

This warning is already discussed here in the GCC bugzilla:

  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62184

gdb/ChangeLog:

* dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
its own line.

gdb/ChangeLog
gdb/dtrace-probe.c

index 7914b1dd3c9ec72ef580b203e1cbf1fc980d0a85..7c48bf4ba778da8a11b345409e9a0d5e27216a53 100644 (file)
@@ -1,3 +1,8 @@
+2017-06-25  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
+       its own line.
+
 2017-06-25  Simon Marchi  <simon.marchi@ericsson.com>
 
        * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
index 122f8ded91b6fcf630c6a306aa2ffdb754557d22..c611b16375d7747c9c45d5582a9e4488f072d0b2 100644 (file)
@@ -421,7 +421,8 @@ dtrace_process_dof_probe (struct objfile *objfile,
          arg.type_str = xstrdup (p);
 
          /* Use strtab_size as a sentinel.  */
-         while (*p++ != '\0' && p - strtab < strtab_size);
+         while (*p++ != '\0' && p - strtab < strtab_size)
+           ;
 
          /* Try to parse a type expression from the type string.  If
             this does not work then we set the type to `long