From: Mark Mitchell Date: Thu, 22 Jul 2004 21:37:06 +0000 (+0000) Subject: * g++.dg/parse/attr2.C: Simplify. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=73b71f3e137fb50881429d16ee8fe6b983cc59e8;p=gcc.git * g++.dg/parse/attr2.C: Simplify. From-SVN: r85060 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c28a819d563..7ddf240638f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-07-22 Mark Mitchell + + * g++.dg/parse/attr2.C: Simplify. + 2004-07-22 Joseph S. Myers PR c/7284 diff --git a/gcc/testsuite/g++.dg/parse/attr2.C b/gcc/testsuite/g++.dg/parse/attr2.C index eeaa9fabc9b..ce770029cbb 100644 --- a/gcc/testsuite/g++.dg/parse/attr2.C +++ b/gcc/testsuite/g++.dg/parse/attr2.C @@ -1,10 +1,7 @@ // 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) +void foo (void) { vector signed int v1 = { 1, 2, 3, 4 }; vector signed int v2, v3;