add reproducer for ifx bug

This commit is contained in:
Bryce Allen
2022-03-14 22:09:38 +00:00
parent 8e78f0c8cd
commit 594249c1e1
3 changed files with 100 additions and 32 deletions

View File

@@ -23,6 +23,15 @@ build/array_copy_ifx_debug: array_copy.f90 mkbuilddir
build/array_copy_gfortran_debug: array_copy.f90 mkbuilddir
gfortran -g -fcheck-array-temporaries $< -o $@
build/pointer_bounds_associate_ifort: pointer_bounds_associate.f90 mkbuilddir
ifort -O2 -g -check arg_temp_created $< -o $@
build/pointer_bounds_associate_ifx: pointer_bounds_associate.f90 mkbuilddir
ifx -O2 -g -check arg_temp_created $< -o $@
build/pointer_bounds_associate_gfortran: pointer_bounds_associate.f90 mkbuilddir
gfortran -O2 -g -fcheck-array-temporaries $< -o $@
.PHONY: clean
clean:
@rm -f build/*