- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
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
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
ifort /Qdiag-disable:8291
I will report this to the developers. Issue ID is DPD200175062.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This will be fixed in a future compiler release.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page