diff options
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/trans-types.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index faeebac..826cdb3 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2004-11-15 Paul Brook <paul@codesourcery.com> + + * trans-types.c (gfc_get_dtype): Remove obsolete TODO. + 2004-11-10 Paul Brook <paul@codesourcery.com> PR fortran/18375 diff --git a/gcc/fortran/trans-types.c b/gcc/fortran/trans-types.c index 23d6d40..a2197e7 100644 --- a/gcc/fortran/trans-types.c +++ b/gcc/fortran/trans-types.c @@ -860,7 +860,6 @@ gfc_get_dtype (tree type, int rank) if (GFC_DESCRIPTOR_TYPE_P (type) || GFC_ARRAY_TYPE_P (type)) return (GFC_TYPE_ARRAY_DTYPE (type)); - /* TODO: Correctly identify LOGICAL types. */ switch (TREE_CODE (type)) { case INTEGER_TYPE: |