- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
We are upgrading Intel Fortran compiler from 11.1.072 to XE 2013 U2.
In testing, we found out that 2013 is printing negative zero in some instances where the number that is being printed is a very small negative number.
For example:
Program main
implicit none
real float
float = -0.00005
write (*,1000) float
1000 format(F5.3)
End Program
Compiler 11.1.072 prints 0.000 where as the new XE 2013 U2 prints -.000
I was looking for a compiler switch to print the old answer without modifying the code, but couldn't find any.
Did anyone experience the same?
Thanks for your help,
- Pramod
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is required by the Fortran standard. The old behavior was incorrect. There is no option to revert to the old, buggy behavior.

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