Tim Keith

Results 13 comments of Tim Keith

gfortran does well on `real :: a[1:10,1:10]`: `Error: Upper bound of last coarray dimension must be '*'` But not so well on `real, dimension(5) :: a[1:10,1:*](4,4)`: `f951: internal compiler error:...

The checking of construct names could be moved to `resolve-names.cc`. That has to recognize when construct names are defined anyway because they can't conflict with other names. So it would...

This means each reference to an enumerator gets longer. E.g. we would change: `if (type->category() == DeclTypeSpec::ClassStar) {` to: `if (type->category() == DeclTypeSpec::Category::ClassStar) {` To me that it slightly less...