summaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
authorvehre <vehre@138bc75d-0d04-0410-961f-82ee72b054a4>2016-11-30 14:34:13 +0000
committervehre <vehre@138bc75d-0d04-0410-961f-82ee72b054a4>2016-11-30 14:34:13 +0000
commit51aeaff60385fcbd3d028122563c147495fa42db (patch)
tree3b76c54dcc97667a0e87e6f8c065ba365b719e4d /libgfortran
parent29b99e96ef52c01430b026814d28c5052ff7d4f5 (diff)
downloadgcc-51aeaff60385fcbd3d028122563c147495fa42db.tar.gz
libgfortran/ChangeLog:
2016-11-30 Andre Vehreschild <vehre@gcc.gnu.org> * caf/single.c (_gfortran_caf_is_present): Prevent fallthrough warnings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@243024 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r--libgfortran/caf/single.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libgfortran/caf/single.c b/libgfortran/caf/single.c
index 5e2932ca007..3eceed90087 100644
--- a/libgfortran/caf/single.c
+++ b/libgfortran/caf/single.c
@@ -2949,6 +2949,7 @@ _gfortran_caf_is_present (caf_token_t token,
if (riter->next == NULL)
break;
/* else fall through reporting an error. */
+ /* FALLTHROUGH */
case CAF_ARR_REF_VECTOR:
case CAF_ARR_REF_RANGE:
case CAF_ARR_REF_OPEN_END:
@@ -2976,6 +2977,7 @@ _gfortran_caf_is_present (caf_token_t token,
if (riter->next == NULL)
break;
/* else fall through reporting an error. */
+ /* FALLTHROUGH */
case CAF_ARR_REF_VECTOR:
case CAF_ARR_REF_RANGE:
case CAF_ARR_REF_OPEN_END: