remove 'continue' as last statement in loop

PR other/106370

gcc/cp/ChangeLog:

	* init.cc (sort_mem_initializers): Remove continue as last stmt
	in a loop.

libiberty/ChangeLog:

	* _doprnt.c: Remove continue as last stmt
	in a loop.
This commit is contained in:
Martin Liska 2022-07-22 09:28:48 +02:00
parent 1cc0e9a46e
commit aaf9583d4c
2 changed files with 0 additions and 2 deletions

View File

@ -1436,7 +1436,6 @@ sort_mem_initializers (tree t, tree mem_inits)
continue;
splice:
*p = TREE_CHAIN (*p);
continue;
}
}

View File

@ -55,7 +55,6 @@ Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
putc(CHAR, stream); \
ptr++; \
total_printed++; \
continue; \
} while (0)
#define PRINT_TYPE(TYPE) \