From: Andre Vehreschild Date: Wed, 30 Nov 2016 14:34:13 +0000 (+0100) Subject: single.c (_gfortran_caf_is_present): Prevent fallthrough warnings. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a0f271862f5a029c046ed49468ed1bbfcce9e00;p=gcc.git single.c (_gfortran_caf_is_present): Prevent fallthrough warnings. libgfortran/ChangeLog: 2016-11-30 Andre Vehreschild * caf/single.c (_gfortran_caf_is_present): Prevent fallthrough warnings. From-SVN: r243024 --- 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: