Revert bogus changes to these files

From-SVN: r90736
This commit is contained in:
Nick Clifton 2004-11-16 13:26:38 +00:00 committed by Nick Clifton
parent b92c32643d
commit a1e98266e3
3 changed files with 10 additions and 3 deletions

View 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

View 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});

View 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'" } */