This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/37276] Trouble with some (C99?) math builtins and namespace std
- From: "paolo dot carlini at oracle dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 29 Aug 2008 14:18:18 -0000
- Subject: [Bug c++/37276] Trouble with some (C99?) math builtins and namespace std
- References: <bug-37276-16141@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #4 from paolo dot carlini at oracle dot com 2008-08-29 14:18 -------
>From the "outside", without looking deeper, I agree it seems a front-end issue.
The following seg-faults only when built with the C++ compiler:
inline double
atanh(double __x)
{ return __builtin_atanh(__x); }
int main()
{
atanh(.3);
return 0;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37276