Skip to content

Commit d684a51

Browse files
authored
Merge pull request #130 from Goddard-Fortran-Ecosystem/feature/ifx-nouninit-flag
Add uninit flag for ifx
2 parents 7f43214 + f820925 commit d684a51

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## Unreleased
1010

11+
### Fixed
12+
13+
- Add `-check nouninit` for Intel LLVM to work around [`ifx` bug](https://github.com/HPC-Bugs/reproducers/tree/main/compiler/Fortran/ifx/allocatable).
14+
1115
## [1.5.0] - 2023-04-13
1216

1317
### Added

cmake/IntelLLVM.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if(WIN32)
55
set(check_all "-check:all")
66
else()
77
set(no_optimize "-O0")
8-
set(check_all "-check all")
8+
set(check_all "-check all,nouninit")
99
endif()
1010

1111

0 commit comments

Comments
 (0)