Skip to content

Housekeeping: rm unused files & correct documentation typo #68

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ summarizes the observed compiler behaviors:
**Notes**
1. Fails to build due to an internal compiler error (ICE).
2. Fails to build due to `fpm` issue [767]. See [test/README.md#cray] for a lower bound on the Cray compiler test failures.
3. Fails to build due to polymorphism not yet being supported. However, a refactored version of 10 the compiler tests in [./tests/compiler_test_m.f90] pass when incorporated into the [llvm-test-suite].
3. Fails to build due to polymorphism not yet being supported. However, a refactored version of the 10 compiler tests in [./tests/compiler_test_m.f90] pass when incorporated into the [llvm-test-suite].

See the [test suite README.md](./test/README.md) for more details on each compiler's test
results.
Expand Down
2 changes: 1 addition & 1 deletion src/smart_pointer/assert_m.F90
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module assert_m

pure module subroutine assert(assertion, description)
!! Error terminate on .false. assertion with the stop code given by description
!! With IBM XL Fortran, the stop code is an integer due to for character stop codes being unsupported.
!! With IBM XL Fortran, the stop code is an integer due to character stop codes being unsupported.
implicit none
logical, intent(in) :: assertion
character(len=*), intent(in) :: description
Expand Down