Skip to content
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 manifest/fpm.toml.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ maintainer = "fortran@lbl.gov"
copyright = "2021-2026 The Regents of the University of California, through Lawrence Berkeley National Laboratory"

[dev-dependencies]
assert = {git = "https://github.com/berkeleylab/assert.git", tag = "3.1.0"}
assert = {git = "https://github.com/berkeleylab/assert.git", tag = "3.1.2"}
julienne = {git = "https://github.com/berkeleylab/julienne.git", tag = "4.1.0"}

[install]
Expand Down
12 changes: 8 additions & 4 deletions src/caffeine/program_startup_s.F90
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,14 @@ pure function assert_callback_this_image() result(this_image_id)
pure subroutine assert_callback_error_stop(stop_code_char)
implicit none
character(len=*), intent(in) :: stop_code_char
character(len=:), allocatable, target :: tmp
tmp = stop_code_char

call caf_fatal_error(tmp)
# if __LFORTRAN__
! LFortran currently miscompiles the call to caf_fatal_error below
error stop stop_code_char, quiet=.false.
# else
character(len=:), allocatable, target :: tmp
tmp = stop_code_char
call caf_fatal_error(tmp)
# endif
end subroutine
#else
subroutine assert_init()
Expand Down
Loading