This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/23139] -pedantic -ffast-math breaks working code
- From: "thor at math dot tu-berlin dot de" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 29 Jul 2005 21:14:59 -0000
- Subject: [Bug c++/23139] -pedantic -ffast-math breaks working code
- References: <20050729205340.23139.thor@math.tu-berlin.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From thor at math dot tu-berlin dot de 2005-07-29 21:14 -------
As per request, here is the preprocessed source code:
int main(int argc,char **argv)
{
double v = (__extension__ 0x1.0p2047);
printf("%f\n",v);
return 0;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23139