From 9a0f271862f5a029c046ed49468ed1bbfcce9e00 Mon Sep 17 00:00:00 2001 From: Andre Vehreschild Date: Wed, 30 Nov 2016 15:34:13 +0100 Subject: [PATCH] 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 --- libgfortran/caf/single.c | 2 ++ 1 file changed, 2 insertions(+) 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: -- 2.30.2