Commit a1e98266 by Nick Clifton Committed by Nick Clifton

Revert bogus changes to these files

From-SVN: r90736
parent b92c3264
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
......
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});
......
/* 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'" } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment