------- 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 = vec_add (c, d); vec_add (temp, temp1); -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21758