This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/16337] [3.5 Regression] bug defining multiple altivec vectors in same C++ statement
- 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: 2 Jul 2004 21:31:27 -0000
- Subject: [Bug c++/16337] [3.5 Regression] bug defining multiple altivec vectors in same C++ statement
- References: <20040702211748.16337.janis187@us.ibm.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-07-02 21:31 -------
Confirmed, here is the generic example:
#define vector __attribute__((vector_size(16)))
vector signed int foo (void)
{
vector signed int v1 = { 1, 2, 3, 4 };
vector signed int v2, v3;
vector signed int v4;
v2 = v1;
v3 = v1;
v4 = v1;
}
--
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |critical
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |rejects-valid
Known to fail| |3.5.0
Known to work| |3.4.0
Last reconfirmed|0000-00-00 00:00:00 |2004-07-02 21:31:27
date| |
Summary|bug defining multiple |[3.5 Regression] bug
|altivec vectors in same C++ |defining multiple altivec
|statement |vectors in same C++
| |statement
Target Milestone|--- |3.5.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16337