--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-25
22:34 ---
(In reply to comment #5)
> any fix/workaround for 4.0.x stable branch?
Use tempary variables,
instead of doing something like:
vec_add(vec_add (a, b), vec_add (c, d))
do:
temp = vec_add (a, b);
temp1
--- Additional Comments From pluto at agmk dot net 2005-05-25 22:31 ---
any fix/workaround for 4.0.x stable branch?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21758
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-05-25
22:14 ---
Hmm, the preprocessed source will no longer work on the mainline because of
changing how the altivec
intrinsics work. In fact the preprocessed source is not even complete which
makes this a dup of bug
1