We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7f43214 + f820925 commit d684a51Copy full SHA for d684a51
ChangeLog.md
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
9
## Unreleased
10
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
15
## [1.5.0] - 2023-04-13
16
17
### Added
cmake/IntelLLVM.cmake
@@ -5,7 +5,7 @@ if(WIN32)
5
set(check_all "-check:all")
6
else()
7
set(no_optimize "-O0")
- set(check_all "-check all")
+ set(check_all "-check all,nouninit")
endif()
0 commit comments