Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29286 Discussions

Disabling remarks still displays where the remark occured

emonette123
Beginner
1,575 Views
Here is the output of one compilation of a file with remarks on:

ifort /nologo /f77rtl /Qsave /Qzero /Z7 /check:nobounds /traceback /DDEBUG /MT -
ID:\\u\\common\\working\\source\\win64 /c /Fowa306.obj wa306.f
wa306.f(95): remark #8291: Recommended relationship between field width 'W' and
the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'.
WRITE(ILUN,'(2X,E18.12,2X,E18.12)',ERR=900)RXA(IZ),
----------------------------^
wa306.f(95): remark #8291: Recommended relationship between field width 'W' and
the number of fractional digits 'D' in this edit descriptor is 'W>=D+7'.
WRITE(ILUN,'(2X,E18.12,2X,E18.12)',ERR=900)RXA(IZ),
--------------------------------------^


I want to disable remarks, so I used the /Qdiag-disable:remark option. The remark no longer shows, but where it happened is still displayed. I want to remove everything about remarks. How can I do this?

ifort /nologo /f77rtl /Qsave /Qzero /Qdiag-disable:remark /Z7 /check:nobounds /t
raceback /DDEBUG /MT -ID:\\u\\common\\working\\source\\win64 /c /Fowa306.obj wa306.f
WRITE(ILUN,'(2X,E18.12,2X,E18.12)',ERR=900)RXA(IZ),
----------------------------^
WRITE(ILUN,'(2X,E18.12,2X,E18.12)',ERR=900)RXA(IZ),
--------------------------------------^


I am using Composer XE 2011 Update 6.

Etienne
0 Kudos
2 Replies
Steven_L_Intel1
Employee
1,575 Views
I can reproduce this. As a workaround, you can specify the numbers of the remark(s) you want to disable, for example:

ifort /Qdiag-disable:8291

I will report this to the developers. Issue ID is DPD200175062.
0 Kudos
Steven_L_Intel1
Employee
1,575 Views
This will be fixed in a future compiler release.
0 Kudos
Reply