This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug target/32191] ICE with complex __float128



------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]