This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/32191] ICE with complex __float128
- 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: 2 Jun 2007 21:06:51 -0000
- Subject: [Bug target/32191] ICE with complex __float128
- References: <bug-32191-10259@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 2007-06-02 21:06 -------
This works for me with powerpc64-linux-gnu which has a TCmode.
I think the reason why it is only triggered with -std=c99/-std=gnu99 is because
__multc3 is only called then. __multc3 returns a TCmode. So you most likely
can also reproduce it with:
typedef _Complex float __attribute__((mode(TC))) c128;
c128 g(void);
void foo ()
{
c128 x, y;
x = g();
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32191