mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-05 09:14:03 +00:00
Queisce warning about empty bodies in these loops by bumping the ;; to the
next line.
This commit is contained in:
parent
6ed728108a
commit
06dce123b6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257360
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user