Call for volunteers: GCC Bugzilla account approval

2017-06-19 Thread David Edelsohn
The GCC Community needs a few people to help approve GCC Bugzilla accounts. Because of SPAM, the GCC Community had to disable the creation of new accounts. We need a few dedicated, reliable individuals who can review account requests and manage the process of authorizing Bugzilla accounts. This

Missing warning opportunity - code after break;

2017-06-19 Thread Soul Studios
Just noticed this: while(something) { // stuff if (num_elements == 0) { break; --current_group; } } doesn't trigger a warning in GCC 5.1, 6.3 and 7.1. The line after "break;" is unused, probably should be before the break, ie. user

Re: Missing warning opportunity - code after break;

2017-06-19 Thread Eric Gallager
On 6/19/17, Soul Studios wrote: > Just noticed this: > while(something) > { > // stuff > > if (num_elements == 0) > { > break; > --current_group; > } > } > > doesn't trigger a warning in GCC 5.1, 6.3 and 7.1. The line after > "break;" is unused,