Silence gcc7 warnings by adjusting FALLS THROUGH comment.

This commit is contained in:
Olaf Seibert 2020-03-03 22:11:02 +01:00
parent 5c9fc1ae16
commit 592b7facf1
3 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,8 @@
sure how it is supposed to work.
- Added 2.11BSD/m11 as test files. To make this reasonable, a
few small features they use have been recognized and ignored.
- Add -rsx and -rt11 to switch object file format
(from Kevin Handy)
09.11.2015: Rhialto
version 0.4:

View File

@ -774,7 +774,7 @@ static int assemble(
opcp = skipwhite(opcp);
cp = opcp + 3; /* Point cp at the "DF" or
"NDF" part */
/* Falls into... */
/* FALLS THROUGH */
case P_IIF:
case P_IF:
{

View File

@ -226,7 +226,7 @@ void implicit_gbl(
case EX_AND:
case EX_OR:
implicit_gbl(value->data.child.right);
/* falls into... */
/* FALLS THROUGH */
case EX_COM:
case EX_NEG:
implicit_gbl(value->data.child.left);