1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-06 09:17:25 +00:00

Queisce warning about empty bodies in these loops by bumping the ;; to the

next line.
This commit is contained in:
Sean Bruno 2013-10-29 20:35:28 +00:00
parent 6ed728108a
commit 06dce123b6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257360
2 changed files with 6 additions and 3 deletions

View File

@ -420,7 +420,8 @@ gen_to_words (LITTLENUM_TYPE *words, int precision, long exponent_bits)
- generic_floating_point_number.low);
/* Seek (and forget) 1st significant bit. */
for (exponent_skippage = 0; !next_bits (1); ++exponent_skippage);;
for (exponent_skippage = 0; !next_bits (1); ++exponent_skippage)
;;
exponent_1 = (generic_floating_point_number.exponent
+ generic_floating_point_number.leader
+ 1

View File

@ -1666,7 +1666,8 @@ dollar_label_name (register long n, /* we just saw "n$:" : n a number. */
*q = i % 10 + '0';
i /= 10;
}
while ((*p++ = *--q) != '\0');;
while ((*p++ = *--q) != '\0')
;;
/* The label, as a '\0' ended string, starts at symbol_name_build. */
return symbol_name_build;
@ -1837,7 +1838,8 @@ fb_label_name (long n, /* We just saw "n:", "nf" or "nb" : n a number. */
*q = i % 10 + '0';
i /= 10;
}
while ((*p++ = *--q) != '\0');;
while ((*p++ = *--q) != '\0')
;;
/* The label, as a '\0' ended string, starts at symbol_name_build. */
return (symbol_name_build);