diff options
Diffstat (limited to 'gcc/fortran/match.c')
| -rw-r--r-- | gcc/fortran/match.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c index 19a97e930e9..42fe7943aea 100644 --- a/gcc/fortran/match.c +++ b/gcc/fortran/match.c @@ -1187,6 +1187,11 @@ loop: } default: + + /* gfc_next_ascii_char converts characters to lower-case, so we shouldn't + expect an upper case character here! */ + gcc_assert (TOLOWER (c) == c); + if (c == gfc_next_ascii_char ()) goto loop; break; |

