* g++.dg/parse/attr2.C: Simplify.
authorMark Mitchell <mark@codesourcery.com>
Thu, 22 Jul 2004 21:37:06 +0000 (21:37 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 22 Jul 2004 21:37:06 +0000 (21:37 +0000)
From-SVN: r85060

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/parse/attr2.C

index c28a819d563f562ba9502ec609ce5ddea8dfa71d..7ddf240638fccb1508c20dcfd971760956062a73 100644 (file)
@@ -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>
 
        PR c/7284
index eeaa9fabc9bc3fd566eb2fe72a2cb6e15309c809..ce770029cbb5e3d81a6f4f64c32dfe64be2e94e7 100644 (file)
@@ -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;