This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/51364] C++ interoperability with ISO-C extension DFP types requires explicit typedefs.
- From: "redi at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Mon, 19 Dec 2011 00:21:36 +0000
- Subject: [Bug c++/51364] C++ interoperability with ISO-C extension DFP types requires explicit typedefs.
- Auto-submitted: auto-generated
- References: <bug-51364-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51364
--- Comment #9 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-12-19 00:21:36 UTC ---
There's nothing strange - the runtime code is in static libraries, so all the
code for doing I/O must be linked into the executable if you use e.g. printf.
Using isnan probably doesn't require linking to a library function, so doesn't
pull in all the code.