re PR c++/16337 (bug defining multiple altivec vectors in same C++ statement)

PR c++/16337
	* g++.dg/parse/attr2.C: New test.

From-SVN: r84872
This commit is contained in:
Mark Mitchell 2004-07-17 18:06:28 +00:00 committed by Mark Mitchell
parent 7bd5ed5c37
commit 0e242c8215
2 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-07-17 Mark Mitchell <mark@codesourcery.com>
PR c++/16337
* g++.dg/parse/attr2.C: New test.
2004-07-17 Toon Moene <toon@moene.indiv.nluug.nl>
* g77.dg: Removed.

View File

@ -0,0 +1,15 @@
// PR c++/16337
// On i686-pc-linux-gnu, without options, we get:
// warning: SSE vector return without SSE enabled changes the ABI
// { dg-options "-w" }
#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;
}