diff options
-rw-r--r-- | gcc/fortran/trans-stmt.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/trans-stmt.cc b/gcc/fortran/trans-stmt.cc index 94ecde0..37f8aca 100644 --- a/gcc/fortran/trans-stmt.cc +++ b/gcc/fortran/trans-stmt.cc @@ -5154,7 +5154,7 @@ gfc_trans_concurrent_locality_spec (bool after_body, stmtblock_t *body, gfc_start_saved_local_decls (); cnt = 0; - static_assert (LOCALITY_LOCAL_INIT - LOCALITY_LOCAL == 1); + static_assert (LOCALITY_LOCAL_INIT - LOCALITY_LOCAL == 1, "locality_type"); for (int type = LOCALITY_LOCAL; type <= LOCALITY_LOCAL_INIT; type++) for (el = locality_list[type]; el; el = el->next) |