diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b14148da1f1d..523db7aff763 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2004-11-16 Nick Clifton + + 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 PR fortran/13010 diff --git a/gcc/testsuite/gcc.c-torture/execute/simd-4.c b/gcc/testsuite/gcc.c-torture/execute/simd-4.c index 5942839b30a8..0d4481f7cef3 100644 --- a/gcc/testsuite/gcc.c-torture/execute/simd-4.c +++ b/gcc/testsuite/gcc.c-torture/execute/simd-4.c @@ -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}); diff --git a/gcc/testsuite/gcc.dg/20040910-1.c b/gcc/testsuite/gcc.dg/20040910-1.c index b89c95351b6d..ff772ab57b4a 100644 --- a/gcc/testsuite/gcc.dg/20040910-1.c +++ b/gcc/testsuite/gcc.dg/20040910-1.c @@ -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'" } */