mirror of git://gcc.gnu.org/git/gcc.git
parent
9e629a806d
commit
73b71f3e13
|
|
@ -1,3 +1,7 @@
|
||||||
|
2004-07-22 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
|
* g++.dg/parse/attr2.C: Simplify.
|
||||||
|
|
||||||
2004-07-22 Joseph S. Myers <jsm@polyomino.org.uk>
|
2004-07-22 Joseph S. Myers <jsm@polyomino.org.uk>
|
||||||
|
|
||||||
PR c/7284
|
PR c/7284
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
// PR c++/16337
|
// 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)))
|
#define vector __attribute__((vector_size(16)))
|
||||||
vector signed int foo (void)
|
void foo (void)
|
||||||
{
|
{
|
||||||
vector signed int v1 = { 1, 2, 3, 4 };
|
vector signed int v1 = { 1, 2, 3, 4 };
|
||||||
vector signed int v2, v3;
|
vector signed int v2, v3;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue