Skip to content

Commit 4f21bf2

Browse files
committed
Update main.f90
1 parent bf8757c commit 4f21bf2

File tree

1 file changed

+2
-2
lines changed
  • example_packages/features_per_compiler/app

1 file changed

+2
-2
lines changed

example_packages/features_per_compiler/app/main.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function check_ifort_flags(options, debug_on, release_on, fast_on, strict_on) re
170170
end if
171171

172172
if (fast_on) then
173-
if (.not. check_flag(options, '-fast', 'Fast', '-ffast')) failed_count = failed_count + 1
173+
if (.not. check_flag(options, '-fp-model', 'Fast', 'fast')) failed_count = failed_count + 1
174174
end if
175175

176176
if (strict_on) then
@@ -198,7 +198,7 @@ function check_ifx_flags(options, debug_on, release_on, fast_on, strict_on) resu
198198
end if
199199

200200
if (fast_on) then
201-
if (.not. check_flag(options, '-fast', 'Fast', '-ffast')) failed_count = failed_count + 1
201+
if (.not. check_flag(options, '-fp-model', 'Fast', 'fast')) failed_count = failed_count + 1
202202
end if
203203

204204
if (strict_on) then

0 commit comments

Comments
 (0)