This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/8703] Compiler Segmentation Fault cross-compiling PPC Altivec accelerated code
- From: "pinskia at physics dot uc dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 2 Jun 2003 15:54:26 -0000
- Subject: [Bug c/8703] Compiler Segmentation Fault cross-compiling PPC Altivec accelerated code
- References: <20021125084604.8703.vtaylor@dna-cs.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8703
------- Additional Comments From pinskia@physics.uc.edu 2003-06-02 15:54 -------
instead of vec_stx(vec_add(vec_ld(...),vec_ld(...)),..) do
vector int temp = vec_ld(...);
vector int temp1 = vec_ld(...);
vector int temp2 = vec_add(temp, temp1);
vec_stx(temp,..);
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.