This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/30013] Multiple flaws in decimal floating-point arithmetic conversions fixed
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 29 Nov 2006 02:13:24 -0000
- Subject: [Bug c/30013] Multiple flaws in decimal floating-point arithmetic conversions fixed
- References: <bug-30013-611@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from pinskia at gcc dot gnu dot org 2006-11-29 02:13 -------
422c424
< typedef float DFtype __attribute__ ((mode (DF)));
---
> typedef double DFtype __attribute__ ((mode (DF)));
424c426
< typedef float XFtype __attribute__ ((mode (XF)));
---
> typedef long double XFtype __attribute__ ((mode (XF)));
This part really should not matter as mode tells the compiler what the real
type is.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30013