mirror of
https://github.com/open-simh/simtools.git
synced 2026-04-17 00:36:01 +00:00
Silence gcc7 warnings by adjusting FALLS THROUGH comment.
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -9,6 +9,8 @@
|
|||||||
sure how it is supposed to work.
|
sure how it is supposed to work.
|
||||||
- Added 2.11BSD/m11 as test files. To make this reasonable, a
|
- Added 2.11BSD/m11 as test files. To make this reasonable, a
|
||||||
few small features they use have been recognized and ignored.
|
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
|
09.11.2015: Rhialto
|
||||||
version 0.4:
|
version 0.4:
|
||||||
|
|||||||
@@ -774,7 +774,7 @@ static int assemble(
|
|||||||
opcp = skipwhite(opcp);
|
opcp = skipwhite(opcp);
|
||||||
cp = opcp + 3; /* Point cp at the "DF" or
|
cp = opcp + 3; /* Point cp at the "DF" or
|
||||||
"NDF" part */
|
"NDF" part */
|
||||||
/* Falls into... */
|
/* FALLS THROUGH */
|
||||||
case P_IIF:
|
case P_IIF:
|
||||||
case P_IF:
|
case P_IF:
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -226,7 +226,7 @@ void implicit_gbl(
|
|||||||
case EX_AND:
|
case EX_AND:
|
||||||
case EX_OR:
|
case EX_OR:
|
||||||
implicit_gbl(value->data.child.right);
|
implicit_gbl(value->data.child.right);
|
||||||
/* falls into... */
|
/* FALLS THROUGH */
|
||||||
case EX_COM:
|
case EX_COM:
|
||||||
case EX_NEG:
|
case EX_NEG:
|
||||||
implicit_gbl(value->data.child.left);
|
implicit_gbl(value->data.child.left);
|
||||||
|
|||||||
Reference in New Issue
Block a user