Peter Klausler
Peter Klausler
Add CHARACTER comparisons for ASCII scalars, flesh out more APIs and implementations, add a unit test.
``` do j=1,5 go to 1 2 continue end do go to 3 1 go to 2 3 continue end ``` elicits "label '2' is not in scope" as a...
``` module m abstract interface subroutine foo end subroutine end interface contains subroutine foo end subroutine end module ``` elicits ``` /tmp/bug.f90:7:14: error: 'foo' is already declared in this scoping...
``` pointer(p,a(*)) ```
Implement the UNSIGNED extension type and operations under control of a language feature flag (-funsigned). This is nearly identical to the UNSIGNED feature that has been available in Sun Fortran...
There were two bugs in derived type array assignment processing that caused finalization to fail to occur for a test case. The first bug was an off-by-one error in address...