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