diff options
Diffstat (limited to 'gcc/fortran/parse.c')
-rw-r--r-- | gcc/fortran/parse.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/fortran/parse.c b/gcc/fortran/parse.c index caea16b..5bd04b8 100644 --- a/gcc/fortran/parse.c +++ b/gcc/fortran/parse.c @@ -5541,16 +5541,17 @@ parse_executable (gfc_statement st) } if (directive_unroll != -1) - gfc_error ("%<GCC unroll%> directive does not commence a loop at %C"); + gfc_error ("%<GCC unroll%> directive not at the start of a loop at %C"); if (directive_ivdep) - gfc_error ("%<GCC ivdep%> directive does not commence a loop at %C"); + gfc_error ("%<GCC ivdep%> directive not at the start of a loop at %C"); if (directive_vector) - gfc_error ("%<GCC vector%> directive does not commence a loop at %C"); + gfc_error ("%<GCC vector%> directive not at the start of a loop at %C"); if (directive_novector) - gfc_error ("%<GCC novector%> directive does not commence a loop at %C"); + gfc_error ("%<GCC novector%> " + "directive not at the start of a loop at %C"); st = next_statement (); } |