diff options
Diffstat (limited to 'gcc/fortran/parse.c')
-rw-r--r-- | gcc/fortran/parse.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/fortran/parse.c b/gcc/fortran/parse.c index 8861e16..aedf292 100644 --- a/gcc/fortran/parse.c +++ b/gcc/fortran/parse.c @@ -282,6 +282,10 @@ decode_statement (void) match ("use% ", gfc_match_use, ST_USE); break; + case 'v': + match ("volatile", gfc_match_volatile, ST_ATTR_DECL); + break; + case 'w': match ("write", gfc_match_write, ST_WRITE); break; |