Skip to content

Commit

Permalink
ifx: remove check on uninitialized variables
Browse files Browse the repository at this point in the history
  • Loading branch information
perazz committed Dec 13, 2023
1 parent 7e25bdf commit 6605707
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/fpm_compiler.F90
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ module fpm_compiler
flag_intel_fixed_form = " -fixed", &
flag_intel_standard_compliance = " -standard-semantics"

character(*), parameter :: &
flag_intel_llvm_check = " -check all,nouninit"

character(*), parameter :: &
flag_intel_backtrace_win = " /traceback", &
flag_intel_warn_win = " /warn:all", &
Expand Down Expand Up @@ -421,7 +424,7 @@ subroutine get_debug_compile_flags(id, flags)
case(id_intel_llvm_nix)
flags = &
flag_intel_warn//&
flag_intel_check//&
flag_intel_llvm_check//&
flag_intel_limit//&
flag_intel_debug//&
flag_intel_byterecl//&
Expand Down

0 comments on commit 6605707

Please sign in to comment.