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/21758] cc1: out of memory allocating...


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


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