diff options
author | Tobias Burnus <burnus@net-b.de> | 2006-11-20 21:04:24 +0100 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2006-11-20 21:04:24 +0100 |
commit | d7043acd94f8d8d6c93465ca4a98d07e5a2fb163 (patch) | |
tree | 1a74284ac06c994824d3ea09161c48ac0b75f223 /gcc/fortran/symbol.c | |
parent | 9e0881604966a3cdc06db1b06630b0ce2fd5da2e (diff) | |
download | gcc-d7043acd94f8d8d6c93465ca4a98d07e5a2fb163.zip gcc-d7043acd94f8d8d6c93465ca4a98d07e5a2fb163.tar.gz gcc-d7043acd94f8d8d6c93465ca4a98d07e5a2fb163.tar.bz2 |
symbol.c (check_conflict): Add conflict between VOLATILE attribute and program name.
fortran/
2006-11-20 Tobias Burnus <burnus@net-b.de>
* symbol.c (check_conflict): Add conflict between VOLATILE
attribute and program name.
testsuite/
2006-11-20 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/volatile3.f90: Add conflict test.
From-SVN: r119025
Diffstat (limited to 'gcc/fortran/symbol.c')
-rw-r--r-- | gcc/fortran/symbol.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/fortran/symbol.c b/gcc/fortran/symbol.c index d867de9..7982920 100644 --- a/gcc/fortran/symbol.c +++ b/gcc/fortran/symbol.c @@ -432,6 +432,7 @@ check_conflict (symbol_attribute * attr, const char * name, locus * where) conf2 (dimension); conf2 (dummy); conf2 (save); + conf2 (volatile_); conf2 (pointer); conf2 (target); conf2 (external); |