This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/61668] Division returns an error in some cases


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61668

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|critical                    |normal

--- Comment #5 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Please read http://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html
before making silly claims.


I don't know any compiler that will print 0.59 for this program:

extern "C" int printf(const char*, ...);

int main()
{
  printf("%.32f\n", 0.59);
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]