Revert bogus changes to these files
authorNick Clifton <nickc@redhat.com>
Tue, 16 Nov 2004 13:26:38 +0000 (13:26 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Tue, 16 Nov 2004 13:26:38 +0000 (13:26 +0000)
From-SVN: r90736

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/simd-4.c
gcc/testsuite/gcc.dg/20040910-1.c

index b14148da1f1d2bc4e239589ca194fc976d6e08c3..523db7aff763ef6a54613429a0aebc60d2e1fa35 100644 (file)
@@ -1,3 +1,10 @@
+2004-11-16  Nick Clifton  <nickc@redhat.com>
+
+       Revert patches accidentally commited during checkin of fixes for
+       xstormy16 tests:
+       gcc.c-torture/execute/simd-4.c: Revert
+       gcc.dg/20040910-1.c: Revert.
+
 2004-11-16  Paul Brook  <paul@codesourcery.com>
 
        PR fortran/13010
index 5942839b30a88ec292d1088408d34d89c06c6e1d..0d4481f7cef302239fb8ef1d526af45932e1a577 100644 (file)
@@ -1,4 +1,4 @@
-typedef long __attribute__((vector_size(8))) v2si;
+typedef int __attribute__((vector_size(8))) v2si;
 long long s64;
 
 static inline long long
@@ -9,7 +9,7 @@ __ev_convert_s64 (v2si a)
 
 int main()
 {
-  union { long long ll; long i[2]; } endianness_test;
+  union { long long ll; int i[2]; } endianness_test;
   endianness_test.ll = 1;
   int little_endian = endianness_test.i[0];
   s64 = __ev_convert_s64 ((v2si){1,0xffffffff});
index b89c95351b6dbe7c1f618bfbf7569dfb0eff6671..ff772ab57b4a73110fd4782b083cbc6b59d8140a 100644 (file)
@@ -1,2 +1,2 @@
 /* Tests error recovery for invalid code.  */
-__attribute__((foo)  int f (){} /* { dg-error "(parse error|syntax error|expected '\\)') before `int'" } */
+__attribute__((foo)  int f (){} /* { dg-error "(parse error|syntax error|expected '\\)') before 'int'" } */