This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/50060] intrinsics not folded by the middle-end
- From: "paolo.carlini at oracle dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 12 Aug 2011 16:12:56 +0000
- Subject: [Bug middle-end/50060] intrinsics not folded by the middle-end
- Auto-submitted: auto-generated
- References: <bug-50060-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50060
--- Comment #1 from Paolo Carlini <paolo.carlini at oracle dot com> 2011-08-12 16:12:56 UTC ---
Uhm, remquo is strange. I see a do_mpfr_remquo but the following C++11 snippet
is rejected, I don't know why:
int r = 0;
constexpr double d = __builtin_remquo(1.0, 1.0, &r);