newlib/winsup/cygwin/regex
Corinna Vinschen 50ad198085 Cygwin: Add 'fallthrough' pseudo keyword for switch/case use
This patch has been inspired by the Linux kernel patch

  294f69e662d1 compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use

written by Joe Perches <joe AT perches DOT com> based on an idea from
Dan Carpenter <dan DOT carpenter AT oracle DOT com>.  The following text
is from the original log message:

Reserve the pseudo keyword 'fallthrough' for the ability to convert the
various case block /* fallthrough */ style comments to appear to be an
actual reserved word with the same gcc case block missing fallthrough
warning capability.

All switch/case blocks now should end in one of:

	break;
	fallthrough;
	goto <label>;
	return [expression];
	continue;

In C mode, GCC supports the __fallthrough__ attribute since 7.1,
the same time the warning and the comment parsing were introduced.

Cygwin-only: add an explicit -Wimplicit-fallthrough=5 to the build
flags.
2020-08-05 21:58:22 +02:00
..
COPYRIGHT
cname.h Cygwin: fix formatting: drop spaces leading tabs 2020-03-11 13:45:58 +01:00
engine.c * Merge in cygwin-64bit-branch. 2013-04-23 09:44:36 +00:00
regcomp.c Cygwin: Add 'fallthrough' pseudo keyword for switch/case use 2020-08-05 21:58:22 +02:00
regerror.c * regcomp.c (p_ere): Workaround incorrect compiler warning. 2010-02-04 21:05:07 +00:00
regex.3
regex.7
regex2.h Cygwin: fix formatting: drop spaces leading tabs 2020-03-11 13:45:58 +01:00
regexec.c Adapt to changes in newlib's sys/cdefs.h: 2013-04-22 10:33:09 +00:00
regfree.c
utils.h