diff options
| author | Danny Smith <dannysmith@users.sourceforge.net> | 2006-02-18 16:10:59 +0000 |
|---|---|---|
| committer | Steven G. Kargl <kargl@gcc.gnu.org> | 2006-02-18 16:10:59 +0000 |
| commit | ef6a0629b45f7b2fa8ae02ff94de99a053071515 (patch) | |
| tree | 21d407761fe42b423dece970ebc9559a6f96c965 /gcc/fortran/symbol.c | |
| parent | e084430d3de94b907669a8606189208c03ca4334 (diff) | |
| download | gcc-ef6a0629b45f7b2fa8ae02ff94de99a053071515.zip gcc-ef6a0629b45f7b2fa8ae02ff94de99a053071515.tar.gz gcc-ef6a0629b45f7b2fa8ae02ff94de99a053071515.tar.bz2 | |
gfortran.h (gfc_add_attribute): Change uint to unsigned int.
2006-02-18 Danny Smith <dannysmith@users.sourceforeg.net>
* gfortran.h (gfc_add_attribute): Change uint to unsigned int.
* symbol.c (gfc_add_attribute): Likewise for definition.
* resolve.c (resolve_global_procedure): Likewise for variable 'type'.
From-SVN: r111239
Diffstat (limited to 'gcc/fortran/symbol.c')
| -rw-r--r-- | gcc/fortran/symbol.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/fortran/symbol.c b/gcc/fortran/symbol.c index 7fc7ef1..45c7d25 100644 --- a/gcc/fortran/symbol.c +++ b/gcc/fortran/symbol.c @@ -604,7 +604,8 @@ duplicate_attr (const char *attr, locus * where) /* Called from decl.c (attr_decl1) to check attributes, when declared separately. */ try -gfc_add_attribute (symbol_attribute * attr, locus * where, uint attr_intent) +gfc_add_attribute (symbol_attribute * attr, locus * where, + unsigned int attr_intent) { if (check_used (attr, NULL, where) |
