This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/21758] cc1: out of memory allocating...
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 May 2005 22:34:30 -0000
- Subject: [Bug target/21758] cc1: out of memory allocating...
- References: <20050525200452.21758.pluto@agmk.net>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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