Bug#376468: Should use xargs --no-run-if-empty

2006-07-03 Thread Josh Triplett
Package: gcc-4.0
Version: 4.0.3-4
Severity: minor

$ fakeroot debian/rules clean
[...]
find debian/patches -name '*.dpatch' -type f ! -perm 644 | xargs chmod 644
chmod: missing operand after `644'
Try `chmod --help' for more information.
make: [clean] Error 123 (ignored)

This command line should use xargs --no-run-if-empty to avoid the error.

- Josh Triplett



signature.asc
Description: OpenPGP digital signature


gcc-4.1 doesn't pack structures with 'char' fields, but does for 'short' or 'int' fields

2006-07-03 Thread Fred Marmond
Package: gcc
Version: 4:4.1.1-1
Severity: important

The following code: 

typedef struct  {
   chara : 3;
   charb : 4;
   charc : 4;
   chard : 4;
   chare : 1;
   } __attribute__ ((packed)) Bits ;

doesn't compile the same with gcc-4.0.3 and gcc-4.1.2, and may introduce big 
runtime errors on optimized softs.

Compiles fine on dapper: gcc (GCC) 4.0.3 (Ubuntu 4.0.3-1ubuntu5)
Fails on edgy: gcc (GCC) 4.1.2 20060613 (prerelease) (Ubuntu
4.1.1-2ubuntu3)

If I replace 'char' with 'short', or 'int', it works well even on 4.1.2
.
It is a HARD BUG since gcc compiles without error, but with different
result (that will be seen at runtime...).

See the following full testcase (and the results on dapper AND edgy
after ):
>>>

#include 
/*
This testcase shows a strange result when compiling with gcc-4.1:
The 'Bits' structure has 16 bits, I want them to be packed.
In gcc-4.0, it stands into 2 bytes, all bits packed, expected result.
In gcc-4.1, it goes into 3 bytes, with a hole!
Fred Marmond, [EMAIL PROTECTED]
*/

#define FieldType   char
/* but no problem if the struct is composed of 'short', or 'int', ... */

typedef struct  {
FieldType   a : 3;
FieldType   b : 4;
FieldType   c : 4;
FieldType   d : 4;
FieldType   e : 1;
} __attribute__ ((packed)) Bits ;

main()
{
/*padd0 and padd1 are used to prevent overflows when clearing the Bits 
structure.*/
unsigned long long padd0;
Bitsbits;
unsigned long long padd1;
/*hack to clear the bits */
unsigned long long* bitsll=(unsigned long long*)(&bits);
*bitsll=(unsigned long long)0LL;

/*set all fields, in order to see the position of fields inside the 
structure */
bits.a=0x7;
bits.b=0xf;
bits.c=0xf;
bits.d=0xf;
bits.e=0x1;


printf("sizeof(Bits)=%li\n",sizeof(Bits));
/*shows the real position of fields into the Bits structure*/
printf("mask=0x%llx\n",*bitsll);

return 0;
}

<

RESULT ON DAPPER (correct):
[EMAIL PROTECTED]:/tmp$ gcc gcc_packed_testcase.c -o packedtest_4.0 &&
./packedtest_4.0
sizeof(Bits)=2
mask=0x


RESULT ON EDGY (WRONG COMPILATION):
[EMAIL PROTECTED]:/tmp$ gcc gcc_packed_testcase.c -o packedtest_4.1 &&
./packedtest_4.1
sizeof(Bits)=3
mask=0x1ff7f


I saw this problem when compiling something that had an union between a
structure 'packed' and a unsigned long. On gcc-4.1.2, as the structure
'packed' is NOT packed correctly, the structure takes much more place
than the 'raw' unsigned long, and the soft crashed at runtime!
I replaced the 'char' in the structure with 'short', that fixes the
problem for my case, but it's not a solution to patch all potentially
problematics softs of the world! ;)

Debian Release: testing/unstable
  APT prefers edgy-updates
  APT policy: (500, 'edgy-updates'), (500, 'edgy-security'), (500, 'edgy')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-25-amd64-k8
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages gcc depends on:
ii  cpp   4:4.1.1-1  The GNU C preprocessor (cpp)
ii  gcc-4.1   4.1.1-2ubuntu3 The GNU C compiler

Versions of packages gcc recommends:
ii  libc6-dev [libc-dev]2.4-1ubuntu6 GNU C Library: Development 
Librari

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Welcome to Al-Manahel Newsletter List

2006-07-03 Thread munir

The subscription of the email address: 

[EMAIL PROTECTED]

To the mailing list: 

Al-Manahel Newsletter List

is all set. Thanks for subscribing! 

Date of this subscription: Mon Jul  3 10:53:14 2006

Please save this email message for future reference. 

---

You may automatically unsubscribe from this list at any time by 
visiting the following URL:



If the above URL is inoperable, make sure that you have copied the 
entire address. Some mail readers will wrap a long URL and thus break
this automatic unsubscribe mechanism. 

You may also change your subscription by visiting this list's main screen: 



If you're still having trouble, please contact the list owner at: 



The following physical address is associated with this mailing list: 



- 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



[Bug c++/28225] [4.0/4.1/4.2 regression] segfault in type_dependent_expression_p

2006-07-03 Thread pinskia at gcc dot gnu dot org


-- 

pinskia at gcc dot gnu dot org changed:

   What|Removed |Added

 CC||pinskia at gcc dot gnu dot
   ||org
   Target Milestone|--- |4.1.2


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28225

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#376609: ICE: verify_stmts failed (invalid operand to unary operator)

2006-07-03 Thread Martin Michlmayr
Package: gcc-snapshot
Version: 20060419-1

Looking at it now...

> Automatic build of bfilter_1.0.2-3 on usurper by sbuild/amd64 0.46
...
>  g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I. -I../.. -I../.. -I./.. 
> -I../../foundation -I../../lexgen -I/usr/include/mozjs -DNDEBUG -g -Wall -O2 
> -c ConfLexerCore.cpp -o ConfLexerCore.o
> ConfLexerCore.cpp: In constructor 'ConfLexerCore::ConfLexerCore(ConfIO*)':
> ConfLexerCore.cpp:64: error: invalid operand to unary operator
> &thisD.33496_4->m_matchStartD.33476;
> 
> ConfLexerCore.cpp:64: internal compiler error: verify_stmts failed
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See http://gcc.gnu.org/bugs.html> for instructions.
> For Debian GNU/Linux specific bug reporting instructions,
> see .
> make[6]: *** [ConfLexerCore.lo] Error 1

-- 
Martin Michlmayr
http://www.cyrius.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#376609: Acknowledgement (ICE: verify_stmts failed (invalid operand to unary operator))

2006-07-03 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 376609 + upstream
Bug#376609: ICE: verify_stmts failed (invalid operand to unary operator)
There were no tags set.
Tags added: upstream

> forwarded 376609 http://gcc.gnu.org/PR28238
Bug#376609: ICE: verify_stmts failed (invalid operand to unary operator)
Noted your statement that Bug has been forwarded to http://gcc.gnu.org/PR28238.

> --
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Results for 4.0.4 20060630 (prerelease) (Debian 4.0.3-4) testsuite on alpha-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 10:39:17 UTC 2006 (revision 115087)

Native configuration is alpha-unknown-linux-gnu

=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes219
# of unsupported tests  2
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.c/pass49-frag.c execution test
FAIL: libmudflap.c/pass49-frag.c output pattern test
FAIL: libmudflap.c/pass49-frag.c (-static) execution test
FAIL: libmudflap.c/pass49-frag.c (-static) output pattern test
FAIL: libmudflap.c/pass49-frag.c (-O2) execution test
FAIL: libmudflap.c/pass49-frag.c (-O2) output pattern test
FAIL: libmudflap.c/pass49-frag.c (-O3) execution test
FAIL: libmudflap.c/pass49-frag.c (-O3) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c execution test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test

=== libmudflap Summary ===

# of expected passes1277
# of unexpected failures11
=== libstdc++ tests ===


Running target unix
FAIL: abi_check
XPASS: 22_locale/locale/cons/12658_thread-1.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)
XPASS: 27_io/fpos/14320-1.cc execution test

=== libstdc++ Summary ===

# of expected passes3712
# of unexpected failures1
# of unexpected successes   3
# of expected failures  11
=== g++ tests ===


Running target unix
FAIL: g++.dg/tls/static-1.C execution test
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary ===

# of expected passes11423
# of unexpected failures1
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  95
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060630 (prerelease) (Debian 4.0.3-4)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/2320-1.c execution,  -Os 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/mul-subnormal-single-1.c execution,  -Os 
FAIL: gcc.dg/vect/pr18536.c (test for excess errors)
WARNING: gcc.dg/vect/pr18536.c compilation failed to produce executable
XPASS: gcc.dg/vect/vect-85.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-86.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-87.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-87.c scan-tree-dump-times Alignment of access forced 
using peeling 1
XPASS: gcc.dg/vect/vect-88.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-88.c scan-tree-dump-times Alignment of access forced 
using peeling 1

=== gcc Summary ===

# of expected passes34956
# of unexpected failures21
# of unexpected successes   6
# of expected failures  88
# of untested testcases 28
# of unsupported tests  541
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060630 (prerelease) 
(Debian 4.0.3-4)

=== gfortran tests ===


Running target unix
FAIL: gfortran.fortran-torture/execute/intrinsic_nearest.f90 execution,  -O0 
FAIL: gfortran.fortran-torture/execute/intrinsic_nearest.f90 execution,  -O1 
FAIL: gfortran.fortran-torture/execute/intrinsic_nearest.f90 execution,  -O2 
FAIL: gfortran.fortran-torture/execute/intr

Results for 4.0.4 20060630 (prerelease) (Debian 4.0.3-4) testsuite on x86_64-pc-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 10:39:17 UTC 2006 (revision 115087)

Native configuration is x86_64-pc-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes11440
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  85

Running target unix/-m32
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m32 ===

# of expected passes11525
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  56

=== g++ Summary ===

# of expected passes22965
# of unexpected successes   2
# of expected failures  138
# of unsupported tests  141
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060630 (prerelease) (Debian 4.0.3-4)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1

=== gcc Summary for unix ===

# of expected passes35347
# of unexpected failures6
# of unexpected successes   1
# of expected failures  98
# of untested testcases 28
# of unsupported tests  413

Running target unix/-m32
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1

=== gcc Summary for unix/-m32 ===

# of expected passes35606
# of unexpected failures11
# of unexpected successes   1
# of expected failures  94
# of untested testcases 28
# of unsupported tests  327

=== gcc Summary ===

# of expected passes70953
# of unexpected failures17
# of unexpected successes   2
# of expected failures  192
# of untested testcases 56
# of unsupported tests  740
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060630 (prerelease) 
(Debian 4.0.3-4)

=== gfortran tests ===


Running target unix

=== gfortran Summary for unix ===

# of expected passes8826
# of expected failures  1
# of unsupported tests  16

Running target unix/-m32

=== gfortran Summary for unix/-m32 ===

# of expected passes8858
# of expected failures  1

=== gfortran Summary ===

# of expected passes17684
# of expected failures  2
# of unsupported tests  16
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/gfortran/../../gfortran  
version 4.0.4 20060630 (prerelease) (Debian 4.0.3-4)

=== libffi tests ===


Running target unix

=== libffi Summary for unix ===

# of expected passes219
# of unsupported tests  2

Running target unix/-m32

=== libffi Summary for unix/-m32 ===

# of expected passes219
# of unsupported tests  2

=== libffi Summary ===

# of expected passes438
# of unsupported tests  4
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.c/fail1-frag.c (-static) crash test
FAIL: libmudflap.c/fail10-frag.c (-static) crash test
FAIL: libmudflap.c/fail11-frag.c (-static) crash test
FAIL: libmudflap.c/fail12-frag.c (-static) crash test
FAIL: libmudflap.c/fail13-frag.c (-static) crash test
FAIL: libmudflap.c/fail14-frag.c (-static) crash test
FAIL: libmudflap.c/fail15-frag.c (-static) crash test
FAIL: libmudflap.c/fail16-frag.c (-static) crash test
FAIL: libmudflap.c/fail17-frag.c (-static) crash test
FAIL: libmudflap.c/fail18-frag.c (-static) crash test
FAIL: libmudflap.c/fail19-frag.c (-static) crash test
FAIL: libmudflap.c/fail2-frag.c (-static) crash test

Results for 4.0.4 20060630 (prerelease) (Debian 4.0.3-4) testsuite on arm-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 10:39:17 UTC 2006 (revision 115087)

Native configuration is arm-unknown-linux-gnu

=== libffi tests ===


Running target unix
XPASS: libffi.call/closure_fn0.c execution test
XPASS: libffi.call/closure_fn1.c execution test
XPASS: libffi.call/closure_fn2.c execution test
XPASS: libffi.call/closure_fn3.c execution test
XPASS: libffi.call/closure_fn4.c execution test
XPASS: libffi.call/closure_fn5.c execution test
XPASS: libffi.call/cls_12byte.c execution test
XPASS: libffi.call/cls_16byte.c execution test
XPASS: libffi.call/cls_18byte.c execution test
XPASS: libffi.call/cls_19byte.c execution test
XPASS: libffi.call/cls_20byte.c execution test
XPASS: libffi.call/cls_20byte1.c execution test
XPASS: libffi.call/cls_24byte.c execution test
XPASS: libffi.call/cls_2byte.c execution test
XPASS: libffi.call/cls_3_1byte.c execution test
XPASS: libffi.call/cls_3byte1.c execution test
XPASS: libffi.call/cls_3byte2.c execution test
XPASS: libffi.call/cls_4_1byte.c execution test
XPASS: libffi.call/cls_4byte.c execution test
XPASS: libffi.call/cls_5byte.c execution test
FAIL: libffi.call/cls_5byte.c output pattern test, is 127 120 1 128 9 68: 255 
129 69
XPASS: libffi.call/cls_64byte.c execution test
XPASS: libffi.call/cls_6byte.c execution test
FAIL: libffi.call/cls_6byte.c output pattern test, is 127 120 1 128 128 32521 
112 140: 255 32641 113 12
XPASS: libffi.call/cls_7byte.c execution test
XPASS: libffi.call/cls_8byte.c execution test
XPASS: libffi.call/cls_9byte1.c execution test
XPASS: libffi.call/cls_9byte2.c execution test
XPASS: libffi.call/cls_align_double.c execution test
XPASS: libffi.call/cls_align_float.c execution test
XPASS: libffi.call/cls_align_longdouble.c execution test
XPASS: libffi.call/cls_align_pointer.c execution test
XPASS: libffi.call/cls_align_sint16.c execution test
FAIL: libffi.call/cls_align_sint16.c output pattern test, is 12 4951 127 104 13 
200: 116 4964 71
XPASS: libffi.call/cls_align_sint32.c execution test
XPASS: libffi.call/cls_align_sint64.c execution test
XPASS: libffi.call/cls_align_uint16.c execution test
FAIL: libffi.call/cls_align_uint16.c output pattern test, is 12 4951 127 104 13 
176: 116 4964 47
XPASS: libffi.call/cls_align_uint32.c execution test
XPASS: libffi.call/cls_align_uint64.c execution test
XPASS: libffi.call/cls_double.c execution test
XPASS: libffi.call/cls_float.c execution test
XPASS: libffi.call/cls_multi_schar.c execution test
XPASS: libffi.call/cls_multi_sshort.c execution test
XPASS: libffi.call/cls_multi_sshortchar.c execution test
XPASS: libffi.call/cls_multi_uchar.c execution test
XPASS: libffi.call/cls_multi_ushort.c execution test
XPASS: libffi.call/cls_multi_ushortchar.c execution test
XPASS: libffi.call/cls_schar.c execution test
XPASS: libffi.call/cls_sint.c execution test
XPASS: libffi.call/cls_sshort.c execution test
XPASS: libffi.call/cls_uchar.c execution test
XPASS: libffi.call/cls_uint.c execution test
XPASS: libffi.call/cls_ulonglong.c execution test
XPASS: libffi.call/cls_ushort.c execution test
XPASS: libffi.call/nested_struct.c execution test
XPASS: libffi.call/nested_struct1.c execution test
XPASS: libffi.call/nested_struct2.c execution test
XPASS: libffi.call/nested_struct3.c execution test
XPASS: libffi.call/problem1.c execution test
FAIL: libffi.call/struct3.c execution test
XPASS: libffi.special/unwindtest.cc  -shared-libgcc -lstdc++ execution test

=== libffi Summary ===

# of expected passes155
# of unexpected failures5
# of unexpected successes   57
# of expected failures  1
# of unsupported tests  2
=== libmudflap tests ===


Running target unix
WARNING: program timed out.
FAIL: libmudflap.cth/pass39-frag.c (rerun 14) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 14) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c execution test
FAIL: libmudflap.cth/pass40-frag.c output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-static -DSTATIC) execution test
FAIL: libmudflap.cth/pass40-frag.c (-static -DSTATIC) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 14) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 14) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
WARNING: program timed out.
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O3) output pattern test

=== libmudflap Summary ===

# of expected passes1276
# of unexpected failures12
=== libstdc++ tests ===


Running target unix
WARNING: program timed out.
WARNING: program timed out.
FAIL: 22_locale/locale/cons/12658_thread-2.cc execution test
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)
FAIL:

Results for 4.0.4 20060630 (prerelease) (Debian 4.0.3-4) testsuite on i486-pc-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 10:39:17 UTC 2006 (revision 115087)

Native configuration is i486-pc-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes11525
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  56

Running target unix/-march=i686
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-march=i686 ===

# of expected passes11525
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  56

Running target unix/-m64
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes11440
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  85

=== g++ Summary ===

# of expected passes34490
# of unexpected successes   3
# of expected failures  207
# of unsupported tests  197
/scratch/packages/gcc/4.0/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  
version 4.0.4 20060630 (prerelease) (Debian 4.0.3-4)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1

=== gcc Summary for unix ===

# of expected passes35607
# of unexpected failures11
# of unexpected successes   1
# of expected failures  94
# of untested testcases 28
# of unsupported tests  327

Running target unix/-march=i686
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
FAIL: gcc.dg/20020122-2.c (test for excess errors)
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/i386-387-1.c scan-assembler call\\t_?sin
FAIL: gcc.dg/i386-387-1.c scan-assembler call\\t_?cos
FAIL: gcc.dg/i386-387-1.c scan-assembler call\\t_?sqrt
FAIL: gcc.dg/i386-387-1.c scan-assembler call\\t_?atan2
FAIL: gcc.dg/i386-387-1.c scan-assembler call\\t_?log
FAIL: gcc.dg/i386-387-1.c scan-assembler call\\t_?exp
FAIL: gcc.dg/i386-387-1.c scan-assembler call\\t_?tan
FAIL: gcc.dg/i386-387-1.c scan-assembler call\\t_?fmod
FAIL: gcc.dg/i386-387-5.c scan-assembler call\\t_?atan
FAIL: gcc.dg/i386-387-5.c scan-assembler call\\t_?log1p
FAIL: gcc.dg/i386-387-5.c scan-assembler call\\t_?drem
FAIL: gcc.dg/i386-cmov1.c scan-assembler sar[^n]*magic_namec
FAIL: gcc.dg/i386-cmov1.c scan-assembler shr[^n]*magic_namef
FAIL: gcc.dg/i386-cvt-1.c (test for excess errors)
FAIL: gcc.dg/i386-cvt-1.c scan-assembler cvttsd2si[^n]*xmm
FAIL: gcc.dg/i386-cvt-1.c scan-assembler cvttss2si[^n]*xmm
FAIL: gcc.dg/i386-fpcvt-4.c (test for excess errors)
FAIL: gcc.dg/i386-fpcvt-4.c scan-assembler cvtsi2sd
FAIL: gcc.dg/i386-mul.c scan-assembler and[^n]*magic
FAIL: gcc.dg/pr12092-1.c (test for excess errors)
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-22.c scan-tree-dump-times vectorized 3 loops 1
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pentium3  scan-assembler 
prefetchnta
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pentium3  scan-assembler prefetcht0
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pentium3  scan-assembler prefetcht1
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pentium3  scan-assembler prefetcht2
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pentium3m  scan-assembler 
prefetchnta
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pentium3m  scan-assembler 
prefetcht0
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pentium3m  scan-assembler 
prefetcht1
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pentium3m  scan-assembler 
prefetcht2
FAIL: gcc.misc-tests/i386-pf-sse-1.c  -march=pen

Results for 4.0.4 20060630 (prerelease) (Debian 4.0.3-4) testsuite on powerpc-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 10:39:17 UTC 2006 (revision 115087)

Native configuration is powerpc-unknown-linux-gnu

=== g++ tests ===


Running target unix

=== g++ Summary for unix ===

# of expected passes11551
# of expected failures  69
# of unsupported tests  79

Running target unix/-m64

=== g++ Summary for unix/-m64 ===

# of expected passes11513
# of expected failures  69
# of unsupported tests  82

=== g++ Summary ===

# of expected passes23064
# of expected failures  138
# of unsupported tests  161
/home/doko/gcc/4.0/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 
4.0.4 20060630 (prerelease) (Debian 4.0.3-4)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2

=== gcc Summary for unix ===

# of expected passes35947
# of unexpected failures12
# of expected failures  94
# of untested testcases 28
# of unsupported tests  442

Running target unix/-m64
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -O1 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -O1 
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -O2 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -O2 
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -O3 -fomit-frame-pointer 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -O3 -g 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/20020720-1.c compilation,  -Os 
UNRESOLVED: gcc.c-torture/execute/20020720-1.c execution,  -Os 
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC
FAIL: gcc.dg/20020919-1.c  (test for errors, line 106)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 124)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 133)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 160)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 178)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 232)
FAIL: gcc.dg/980827-1.c (test for excess errors)
WARNING: gcc.dg/980827-1.c compilation failed to produce executable
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 7)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 8)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 9)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 10)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 11)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 12)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 14)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 15)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 16)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 20)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 21)
FAIL: gcc.dg/altivec-14.c  (test for warnings, line 22)
FAIL: gcc.dg/altivec-14.c (test for excess errors)
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/ppc-sdata-1.c (test for excess errors)
ERROR: gcc.dg/ppc-sdata-1.c: error executing dg-final: couldn't open 
"ppc-sdata-1.s": no such file or directory
UNRESOLVED: gcc.dg/ppc-sdata-1.c: error executing dg-final: couldn't open 
"ppc-sdata-1.s": no such file or directory
FAIL: gcc.dg/ppc-sdata-2.c (test for excess errors)
ERROR: gcc.dg/ppc-sdata-2.c: error executing dg-final: couldn't open 
"ppc-sdata-2.s": no such file or directory
UNRESOLVED: gcc.dg/ppc-sdata-2.c: error executing dg-final: couldn't open 
"ppc-sdata-2.s": no such file or directory
FAIL: gcc.dg/pr18096-1.c stack frame too large (test for warnings, line 11)
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
FAIL: gcc.misc-tests/linkage.c link

=== gcc Sum

Results for 4.0.4 20060630 (prerelease) (Debian 4.0.3-4) testsuite on s390-ibm-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 10:39:17 UTC 2006 (revision 115087)

Native configuration is s390-ibm-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes11453
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  94

Running target unix/-m64
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes11421
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  96

=== g++ Summary ===

# of expected passes22874
# of unexpected successes   2
# of expected failures  138
# of unsupported tests  190
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060630 (prerelease) (Debian 4.0.3-4)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
FAIL: gcc.dg/fold-cond-1.c scan-tree-dump-times \\(g \\| h\\) != 0 1
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times link_error 0

=== gcc Summary for unix ===

# of expected passes34749
# of unexpected failures7
# of unexpected successes   1
# of expected failures  68
# of untested testcases 28
# of unsupported tests  498

Running target unix/-m64
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
FAIL: gcc.dg/fold-cond-1.c scan-tree-dump-times \\(g \\| h\\) != 0 1
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times link_error 0

=== gcc Summary for unix/-m64 ===

# of expected passes34746
# of unexpected failures7
# of unexpected successes   1
# of expected failures  69
# of untested testcases 28
# of unsupported tests  500

=== gcc Summary ===

# of expected passes69495
# of unexpected failures14
# of unexpected successes   2
# of expected failures  137
# of untested testcases 56
# of unsupported tests  998
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060630 (prerelease) 
(Debian 4.0.3-4)

=== gfortran tests ===


Running target unix

=== gfortran Summary for unix ===

# of expected passes8821
# of expected failures  1
# of unsupported tests  17

Running target unix/-m64

=== gfortran Summary for unix/-m64 ===

# of expected passes8821
# of expected failures  1
# of unsupported tests  17

=== gfortran Summary ===

# of expected passes17642
# of expected failures  2
# of unsupported tests  34
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/gfortran/../../gfortran  
version 4.0.4 20060630 (prerelease) (Debian 4.0.3-4)

=== libffi tests ===


Running target unix

=== libffi Summary for unix ===

# of expected passes219
# of unsupported tests  2

Running target unix/-m64

=== libffi Summary for unix/-m64 ===

# of expected passes219
# of unsupported tests  2

=== libffi Summary ===

# of expected passes438
# of unsupported tests  4
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.cth/pass40-frag.c execution test
FAIL: libmudflap.cth/pass40-frag.c output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O3) output pattern test

=== libmudflap Summary for unix ===

# of expected passes1282
# of unexpected failures6

Running target unix/-m64

=== libmudflap Summary for unix/-m64 ===

# of expected passes1288

=== libmudflap Summary ===

# of expected passes2570
# of unexpected failures6
  

Results for 4.0.4 20060630 (prerelease) (Debian 4.0.3-4) testsuite on sparc-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 10:39:17 UTC 2006 (revision 115087)

Native configuration is sparc-unknown-linux-gnu

=== g++ tests ===


Running target unix
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes11458
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  92

Running target unix/-m64
FAIL: g++.dg/tls/static-1.C execution test
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes11425
# of unexpected failures1
# of unexpected successes   1
# of expected failures  69
# of unsupported tests  94

=== g++ Summary ===

# of expected passes22883
# of unexpected failures1
# of unexpected successes   2
# of expected failures  138
# of unsupported tests  186
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/g++/../../g++  version 4.0.4 
20060630 (prerelease) (Debian 4.0.3-4)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
WARNING: gcc.dg/tls/opt-11.c compilation failed to produce executable
FAIL: gcc.dg/vect/vect-70.c execution test

=== gcc Summary for unix ===

# of expected passes35058
# of unexpected failures7
# of expected failures  95
# of untested testcases 28
# of unsupported tests  527

Running target unix/-m64
FAIL: gcc.c-torture/compile/switch-1.c  -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -fomit-frame-pointer  (test for 
excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/switch-1.c  -Os  (test for excess errors)
WARNING: gcc.dg/tls/opt-11.c compilation failed to produce executable
FAIL: gcc.dg/tls/pr24428-2.c execution test
FAIL: gcc.dg/tls/pr24428.c execution test
FAIL: gcc.misc-tests/linkage.c link

=== gcc Summary for unix/-m64 ===

# of expected passes35050
# of unexpected failures9
# of expected failures  95
# of untested testcases 28
# of unsupported tests  530

=== gcc Summary ===

# of expected passes70108
# of unexpected failures16
# of expected failures  190
# of untested testcases 56
# of unsupported tests  1057
/build/buildd/gcc-4.0-4.0.3/build/gcc/xgcc  version 4.0.4 20060630 (prerelease) 
(Debian 4.0.3-4)

=== gfortran tests ===


Running target unix

=== gfortran Summary for unix ===

# of expected passes8821
# of expected failures  1
# of unsupported tests  17

Running target unix/-m64

=== gfortran Summary for unix/-m64 ===

# of expected passes8821
# of expected failures  1
# of unsupported tests  17

=== gfortran Summary ===

# of expected passes17642
# of expected failures  2
# of unsupported tests  34
/build/buildd/gcc-4.0-4.0.3/build/gcc/testsuite/gfortran/../../gfortran  
version 4.0.4 20060630 (prerelease) (Debian 4.0.3-4)

=== libffi tests ===


Running target unix

=== libffi Summary for unix ===

# of expected passes219
# of unsupported tests  2

Running target unix/-m64

=== libffi Summary for unix/-m64 ===

# of expected passes219
# of unsupported tests  2

=== libffi Summary ===

# of expected passes438
# of unsupported tests  4
=== libmudflap tests ===


Running target unix
FAIL: libmudflap.c/pass54-frag.c execution test
FAIL: libmudflap.c/pass54-frag.c (-static) execution test

=== libmudflap Summary for unix ===

# of expected passes1286
# of unexpected failures2

Running target unix/-m64
FAIL: libmudflap.c/pass54-frag.c execution test
FAIL: libmudflap.c/pass54-frag.c (-static) execution test

=== libmudflap Summary for unix/-m64 ===

# of expected passes1286
# of unexpected failures2

=== libmudflap Summary ===

# of expected passes2572
# of unexpected failures4
=== libstdc++ tests ===


Running target 

Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-6) testsuite on i486-pc-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===
FAIL:   cxf3a01
FAIL:   cxf3a02

=== acats Summary ===
# of expected passes2315
# of unexpected failures2
Native configuration is i486-pc-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes12173
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  66

Running target unix/-m64
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes12088
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  95

=== g++ Summary ===

# of expected passes24261
# of unexpected failures8
# of unexpected successes   4
# of expected failures  132
# of unsupported tests  161
/home/packages/gcc/4.1/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 
4.1.2 20060630 (prerelease) (Debian 4.1.1-6)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2

=== gcc Summary for unix ===

# of expected passes38434
# of unexpected failures5
# of expected failures  101
# of untested testcases 28
# of unsupported tests  244

Running target unix/-m64
FAIL: gcc.dg/visibility-11.c scan-assembler [EMAIL PROTECTED]
FAIL: gcc.dg/tree-ssa/gen-vect-11b.c scan-tree-dump-times vectorized 0 loops 1
FAIL: gcc.dg/tree-ssa/gen-vect-11c.c scan-tree-dump-times vectorized 0 loops 1
FAIL: gcc.misc-tests/linkage.c link
FAIL: gcc.target/i386/asm-1.c  (test for errors, line 4)
FAIL: gcc.target/i386/compress-float-387-pic.c (test for excess errors)
ERROR: gcc.target/i386/compress-float-387-pic.c: error executing dg-final: 
couldn't open "compress-float-387-pic.s": no such file or directory
UNRESOLVED: gcc.target/i386/compress-float-387-pic.c: error executing dg-final: 
couldn't open "compress-float-387-pic.s": no such file or directory
FAIL: gcc.target/i386/compress-float-387.c (test for excess errors)
ERROR: gcc.target/i386/compress-float-387.c: error executing dg-final: couldn't 
open "compress-float-387.s": no such file or directory
UNRESOLVED: gcc.target/i386/compress-float-387.c: error executing dg-final: 
couldn't open "compress-float-387.s": no such file or directory
FAIL: gcc.target/i386/compress-float-sse-pic.c (test for excess errors)
ERROR: gcc.target/i386/compress-float-sse-pic.c: error executing dg-final: 
couldn't open "compress-float-sse-pic.s": no such file or directory
UNRESOLVED: gcc.target/i386/compress-float-sse-pic.c: error executing dg-final: 
couldn't open "compress-float-sse-pic.s": no such file or directory
FAIL: gcc.target/i386/compress-float-sse.c (test for excess errors)
ERROR: gcc.target/i386/compress-float-sse.c: error executing dg-final: couldn't 
open "compress-float-sse.s": no such file or directory
UNRESOLVED: gcc.target/i386/compress-float-sse.c: error executing dg-final: 
couldn't open "compress-float-sse.s": no such file or directory

=== gcc Summary for unix/-m64 ===

# of expected passes38324
# of unexpected failures9
# of expected failures  100
# of unresolved testcases   4
# of untested testcases 28
# of unsupported tests  346

=== gcc Summary ===

# of expected passes76758
# of unexpected failures14
# of expected failures  201
# of unresolved testcases   4
# of untested testcases 56
# of unsupported tests  590
/home/packages/gcc/4.1/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 
(prerelease) (Debian 4.1.1-6)

=== gfortran tests ===


Running target unix

=== gfortran Summary for unix ===

# of expected passes12902
# of expected failures  13
# of unsupported tests  24

Running target unix/-m64


Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-6) testsuite on powerpc-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===

=== acats Summary ===
# of expected passes2317
# of unexpected failures0
Native configuration is powerpc-unknown-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0

=== g++ Summary for unix ===

# of expected passes12195
# of unexpected failures4
# of unexpected successes   1
# of expected failures  66
# of unsupported tests  91

Running target unix/-m64
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0

=== g++ Summary for unix/-m64 ===

# of expected passes12157
# of unexpected failures4
# of unexpected successes   1
# of expected failures  66
# of unsupported tests  94

=== g++ Summary ===

# of expected passes24352
# of unexpected failures8
# of unexpected successes   2
# of expected failures  132
# of unsupported tests  185
/home/doko/gcc/4.1/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 
4.1.2 20060630 (prerelease) (Debian 4.1.1-6)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC[0-9]
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
FAIL: gcc.target/powerpc/pr18096-1.c stack frame too large (test for warnings, 
line 11)
FAIL: gcc.target/powerpc/pr18096-1.c (test for excess errors)

=== gcc Summary for unix ===

# of expected passes38688
# of unexpected failures8
# of expected failures  99
# of untested testcases 28
# of unsupported tests  313

Running target unix/-m64
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC[0-9]
FAIL: gcc.dg/20020919-1.c  (test for errors, line 106)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 124)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 133)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 160)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 178)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 232)
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
XPASS: gcc.dg/tree-ssa/sra-2.c scan-tree-dump-times link_error 0
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
FAIL: gcc.misc-tests/linkage.c link
FAIL: gcc.target/powerpc/20050603-3.c scan-assembler-not inm
FAIL: gcc.target/powerpc/980827-1.c (test for excess errors)
WARNING: gcc.target/powerpc/980827-1.c compilation failed to produce executable
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 7)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 8)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 9)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 10)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 11)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 12)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 14)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 15)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 16)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 20)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 21)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 22)
FAIL: gcc.target/powerpc/altivec-14.c (test for excess errors)
FAIL: gcc.target/powerpc/altivec-22.c scan-assembler-not mfcr
FAIL: gcc.target/powerpc/ppc-sdata-1.c (test for excess errors)
ERROR: gcc.target/powerpc/ppc-sdata-1.c: error executing dg-final: couldn't 
open "ppc-sdata-1.s": no such file or directory
UNRESOLVED: gcc.target/powerpc/ppc-sdata-1.c: error executing dg-final: 
couldn't open "ppc-sdata-1.s": no such file or directory
FAIL: gcc.target/powerpc/ppc-sdata-2.c (test for excess errors)
ERROR: gcc.target/powerpc/ppc-sdata-2.c: error executing dg-final: couldn't 
open "ppc-sdata-2.s": no such file or directory
UNRESOLVED: gcc.target/powerpc/ppc-sdata-2.c: error executing dg-final: 
couldn't open "ppc-sdata-2.s": no such file or directory
FAIL: gcc.target/powerpc/pr18096-1.c stack frame too la

Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-7) testsuite on x86_64-pc-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===

=== acats Summary ===
# of expected passes2317
# of unexpected failures0
Native configuration is x86_64-pc-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes12088
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  95

Running target unix/-m32
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m32 ===

# of expected passes12173
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  66

=== g++ Summary ===

# of expected passes24261
# of unexpected failures8
# of unexpected successes   4
# of expected failures  132
# of unsupported tests  161
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 4.1.2 
20060630 (prerelease) (Debian 4.1.1-7)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/visibility-11.c scan-assembler [EMAIL PROTECTED]

=== gcc Summary for unix ===

# of expected passes38296
# of unexpected failures1
# of expected failures  100
# of untested testcases 28
# of unsupported tests  358

Running target unix/-m32
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2

=== gcc Summary for unix/-m32 ===

# of expected passes38394
# of unexpected failures5
# of expected failures  101
# of untested testcases 28
# of unsupported tests  256

=== gcc Summary ===

# of expected passes76690
# of unexpected failures6
# of expected failures  201
# of untested testcases 56
# of unsupported tests  614
/build/buildd/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 (prerelease) 
(Debian 4.1.1-7)

=== gfortran tests ===


Running target unix

=== gfortran Summary for unix ===

# of expected passes12915
# of expected failures  16
# of unsupported tests  16

Running target unix/-m32

=== gfortran Summary for unix/-m32 ===

# of expected passes12918
# of expected failures  13
# of unsupported tests  16

=== gfortran Summary ===

# of expected passes25833
# of expected failures  29
# of unsupported tests  32
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/gfortran/../../gfortran  
version 4.1.2 20060630 (prerelease) (Debian 4.1.1-7)

=== obj-c++ tests ===


Running target unix
FAIL: obj-c++.dg/bitfield-1.mm (test for excess errors)
FAIL: obj-c++.dg/bitfield-4.mm (test for excess errors)
FAIL: obj-c++.dg/cxx-ivars-2.mm execution test
FAIL: obj-c++.dg/encode-3.mm execution test
FAIL: obj-c++.dg/encode-8.mm execution test
FAIL: obj-c++.dg/isa-field-1.mm (test for excess errors)
FAIL: obj-c++.dg/layout-1.mm (test for excess errors)
FAIL: obj-c++.dg/lookup-2.mm (test for excess errors)
WARNING: obj-c++.dg/lookup-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-2.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-9.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-9.mm compilation failed to produce executable

=== obj-c++ Summary for unix ===

# of expected passes419
# of unexpected failures10
# of unsupported tests  13

Running target unix/-m32
FAIL: obj-c++.dg/cxx-ivars-2.mm execution test
FAIL: obj-c++.dg/encode-8.mm execution test
FAIL: obj-c++.dg/isa-field-1.mm (test for excess errors)
FAIL: obj-c++.dg/lookup-2.mm (test for excess errors)
WARNING: obj-c++.dg/lookup-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-2.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-2

Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-6) testsuite on i486-pc-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===
FAIL:   cxf3a01
FAIL:   cxf3a02

=== acats Summary ===
# of expected passes2315
# of unexpected failures2
Native configuration is i486-pc-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes12173
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  66

Running target unix/-m64
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes12088
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  95

=== g++ Summary ===

# of expected passes24261
# of unexpected failures8
# of unexpected successes   4
# of expected failures  132
# of unsupported tests  161
/home/packages/gcc/4.1/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 
4.1.2 20060630 (prerelease) (Debian 4.1.1-6)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2

=== gcc Summary for unix ===

# of expected passes38434
# of unexpected failures5
# of expected failures  101
# of untested testcases 28
# of unsupported tests  244

Running target unix/-m64
FAIL: gcc.dg/visibility-11.c scan-assembler [EMAIL PROTECTED]
FAIL: gcc.dg/tree-ssa/gen-vect-11b.c scan-tree-dump-times vectorized 0 loops 1
FAIL: gcc.dg/tree-ssa/gen-vect-11c.c scan-tree-dump-times vectorized 0 loops 1
FAIL: gcc.misc-tests/linkage.c link
FAIL: gcc.target/i386/asm-1.c  (test for errors, line 4)
FAIL: gcc.target/i386/compress-float-387-pic.c (test for excess errors)
ERROR: gcc.target/i386/compress-float-387-pic.c: error executing dg-final: 
couldn't open "compress-float-387-pic.s": no such file or directory
UNRESOLVED: gcc.target/i386/compress-float-387-pic.c: error executing dg-final: 
couldn't open "compress-float-387-pic.s": no such file or directory
FAIL: gcc.target/i386/compress-float-387.c (test for excess errors)
ERROR: gcc.target/i386/compress-float-387.c: error executing dg-final: couldn't 
open "compress-float-387.s": no such file or directory
UNRESOLVED: gcc.target/i386/compress-float-387.c: error executing dg-final: 
couldn't open "compress-float-387.s": no such file or directory
FAIL: gcc.target/i386/compress-float-sse-pic.c (test for excess errors)
ERROR: gcc.target/i386/compress-float-sse-pic.c: error executing dg-final: 
couldn't open "compress-float-sse-pic.s": no such file or directory
UNRESOLVED: gcc.target/i386/compress-float-sse-pic.c: error executing dg-final: 
couldn't open "compress-float-sse-pic.s": no such file or directory
FAIL: gcc.target/i386/compress-float-sse.c (test for excess errors)
ERROR: gcc.target/i386/compress-float-sse.c: error executing dg-final: couldn't 
open "compress-float-sse.s": no such file or directory
UNRESOLVED: gcc.target/i386/compress-float-sse.c: error executing dg-final: 
couldn't open "compress-float-sse.s": no such file or directory

=== gcc Summary for unix/-m64 ===

# of expected passes38324
# of unexpected failures9
# of expected failures  100
# of unresolved testcases   4
# of untested testcases 28
# of unsupported tests  346

=== gcc Summary ===

# of expected passes76758
# of unexpected failures14
# of expected failures  201
# of unresolved testcases   4
# of untested testcases 56
# of unsupported tests  590
/home/packages/gcc/4.1/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 
(prerelease) (Debian 4.1.1-6)

=== gfortran tests ===


Running target unix

=== gfortran Summary for unix ===

# of expected passes12902
# of expected failures  13
# of unsupported tests  24

Running target unix/-m64


Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-7) testsuite on s390-ibm-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===
FAIL:   c41303b

=== acats Summary ===
# of expected passes2316
# of unexpected failures1
Native configuration is s390-ibm-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary ===

# of expected passes12093
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  106
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 4.1.2 
20060630 (prerelease) (Debian 4.1.1-7)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/fold-cond-1.c scan-tree-dump-times \\(g \\| h\\) != 0 1
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times link_error 0

=== gcc Summary ===

# of expected passes37340
# of unexpected failures1
# of unexpected successes   1
# of expected failures  76
# of untested testcases 28
# of unsupported tests  294
/build/buildd/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 (prerelease) 
(Debian 4.1.1-7)

=== gfortran tests ===


Running target unix
FAIL: gfortran.dg/char_result_6.f90  -O2  execution test
FAIL: gfortran.dg/char_result_6.f90  -O3 -fomit-frame-pointer  execution test
FAIL: gfortran.dg/char_result_6.f90  -O3 -fomit-frame-pointer -funroll-loops  
execution test
FAIL: gfortran.dg/char_result_6.f90  -O3 -fomit-frame-pointer 
-funroll-all-loops -finline-functions  execution test
FAIL: gfortran.dg/char_result_6.f90  -O3 -g  execution test
FAIL: gfortran.dg/char_result_6.f90  -Os  execution test

=== gfortran Summary ===

# of expected passes12758
# of unexpected failures6
# of expected failures  12
# of unsupported tests  82
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/gfortran/../../gfortran  
version 4.1.2 20060630 (prerelease) (Debian 4.1.1-7)

=== obj-c++ tests ===


Running target unix
FAIL: obj-c++.dg/cxx-ivars-2.mm execution test
FAIL: obj-c++.dg/encode-8.mm execution test
FAIL: obj-c++.dg/isa-field-1.mm (test for excess errors)
FAIL: obj-c++.dg/lookup-2.mm (test for excess errors)
WARNING: obj-c++.dg/lookup-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-2.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-9.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-9.mm compilation failed to produce executable

=== obj-c++ Summary ===

# of expected passes423
# of unexpected failures6
# of unsupported tests  13
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/obj-c++/../../g++  version 
4.1.2 20060630 (prerelease) (Debian 4.1.1-7)

=== objc tests ===


Running target unix

=== objc Summary ===

# of expected passes1686
# of unsupported tests  22
/build/buildd/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 (prerelease) 
(Debian 4.1.1-7)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes50
=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes228
# of unsupported tests  2
=== libmudflap tests ===


Running target unix

=== libmudflap Summary ===

# of expected passes1799
=== libstdc++ tests ===


Running target unix
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)

=== libstdc++ Summary ===

# of expected passes3412
# of unexpected successes   1
# of expected failures  12
# of unsupported tests  315

Compiler version: 4.1.2 20060630 (prerelease) (Debian 4.1.1-7) 
Platform: s390-ibm-linux-gnu
configure flags: -v --prefix=/usr --enable-shared --with-system-zlib 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--enable-nls --program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-java-awt=gtk --enable-gtk-cairo 
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0/jre --enable-mpfr 
--enable-checking=release s390-linux-gnu 
--enable-languages=c,ada,c++,fortran,java,objc,obj-c++,treelang
BOOT_CFLAGS=-O2


Build Dependencies:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-con

Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-7) testsuite on sparc-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===

=== acats Summary ===
# of expected passes2317
# of unexpected failures0
Native configuration is sparc-unknown-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix ===

# of expected passes12102
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  104

Running target unix/-m64
FAIL: tmpdir-g++.dg-struct-layout-1/t026 cp_compat_x_tst.o compile
FAIL: tmpdir-g++.dg-struct-layout-1/t026 cp_compat_y_tst.o compile
UNRESOLVED: tmpdir-g++.dg-struct-layout-1/t026 
cp_compat_x_tst.o-cp_compat_y_tst.o link 
UNRESOLVED: tmpdir-g++.dg-struct-layout-1/t026 
cp_compat_x_tst.o-cp_compat_y_tst.o execute 
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
FAIL: g++.dg/tls/static-1.C execution test
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary for unix/-m64 ===

# of expected passes12065
# of unexpected failures7
# of unexpected successes   2
# of expected failures  66
# of unresolved testcases   2
# of unsupported tests  106

=== g++ Summary ===

# of expected passes24167
# of unexpected failures11
# of unexpected successes   4
# of expected failures  132
# of unresolved testcases   2
# of unsupported tests  210
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 4.1.2 
20060630 (prerelease) (Debian 4.1.1-7)

=== gcc tests ===


Running target unix
XPASS: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-105.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-75.c scan-tree-dump-times vectorized 1 loops 1

=== gcc Summary for unix ===

# of expected passes37695
# of unexpected successes   3
# of expected failures  108
# of untested testcases 28
# of unsupported tests  356

Running target unix/-m64
FAIL: gcc.dg/tls/opt-11.c execution test
FAIL: gcc.dg/tls/pr24428-2.c execution test
FAIL: gcc.dg/tls/pr24428.c execution test
FAIL: gcc.dg/tree-ssa/gen-vect-11c.c scan-tree-dump-times vectorized 0 loops 1
XPASS: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
XPASS: gcc.dg/vect/vect-105.c scan-tree-dump-times vectorized 1 loops 1
XPASS: gcc.dg/vect/vect-75.c scan-tree-dump-times vectorized 1 loops 1
FAIL: gcc.misc-tests/linkage.c link

=== gcc Summary for unix/-m64 ===

# of expected passes37684
# of unexpected failures5
# of unexpected successes   3
# of expected failures  108
# of untested testcases 28
# of unsupported tests  359

=== gcc Summary ===

# of expected passes75379
# of unexpected failures5
# of unexpected successes   6
# of expected failures  216
# of untested testcases 56
# of unsupported tests  715
/build/buildd/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 (prerelease) 
(Debian 4.1.1-7)

=== gfortran tests ===


Running target unix

=== gfortran Summary for unix ===

# of expected passes12768
# of expected failures  14
# of unsupported tests  87

Running target unix/-m64

=== gfortran Summary for unix/-m64 ===

# of expected passes12894
# of expected failures  15
# of unsupported tests  23

=== gfortran Summary ===

# of expected passes25662
# of expected failures  29
# of unsupported tests  110
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/gfortran/../../gfortran  
version 4.1.2 20060630 (prerelease) (Debian 4.1.1-7)

=== obj-c++ tests ===


Running target unix
FAIL: obj-c++.dg/cxx-ivars-2.mm execution test
FAIL: obj-c++.dg/encode-8.mm execution test
FAIL: obj-c++.dg/isa-field-1.mm (test for excess errors)
FAIL: obj-c++.dg/lookup-2.mm (test for excess errors)
WARNING: obj-c++.dg/lookup-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-2.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-2.mm compilation failed to produce executable
FAIL: obj

Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-7) testsuite on mips-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===
FAIL:   c96005d
FAIL:   cc3120a

=== acats Summary ===
# of expected passes1959
# of unexpected failures2
# of unsupported tests  356
Native configuration is mips-unknown-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary ===

# of expected passes12092
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  107
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 4.1.2 
20060630 (prerelease) (Debian 4.1.1-7)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -Os 
FAIL: gcc.dg/attr-alias-3.c (test for excess errors)
FAIL: gcc.dg/fold-cond-1.c scan-tree-dump-times \\(g \\| h\\) != 0 1
FAIL: largefile.c -O0 -g (test for excess errors)
FAIL: largefile.c  -O0  (test for excess errors)
FAIL: largefile.c  -O1  (test for excess errors)
FAIL: largefile.c  -O2  (test for excess errors)
FAIL: largefile.c  -O3 -fomit-frame-pointer  (test for excess errors)
FAIL: largefile.c  -O3 -g  (test for excess errors)
FAIL: largefile.c  -Os  (test for excess errors)
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times link_error 0

=== gcc Summary ===

# of expected passes37514
# of unexpected failures17
# of unexpected successes   1
# of expected failures  76
# of untested testcases 35
# of unsupported tests  275
/build/buildd/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 (prerelease) 
(Debian 4.1.1-7)

=== gfortran tests ===


Running target unix
FAIL: gfortran.dg/secnds.f  -O0  execution test

=== gfortran Summary ===

# of expected passes12763
# of unexpected failures1
# of expected failures  12
# of unsupported tests  82
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/gfortran/../../gfortran  
version 4.1.2 20060630 (prerelease) (Debian 4.1.1-7)

=== obj-c++ tests ===


Running target unix
FAIL: obj-c++.dg/cxx-ivars-2.mm execution test
FAIL: obj-c++.dg/encode-8.mm execution test
FAIL: obj-c++.dg/isa-field-1.mm (test for excess errors)
FAIL: obj-c++.dg/lookup-2.mm (test for excess errors)
WARNING: obj-c++.dg/lookup-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-2.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-9.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-9.mm compilation failed to produce executable

=== obj-c++ Summary ===

# of expected passes423
# of unexpected failures6
# of unsupported tests  13
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/obj-c++/../../g++  version 
4.1.2 20060630 (prerelease) (Debian 4.1.1-7)

=== objc tests ===


Running target unix
FAIL: objc.dg/stabs-1.m scan-assembler 
(.SUBSPA.*[\$]CODE[\$]|.text"?)\\n\\t.stabs.*100,0,0,(.)?L?L[\$]?etext[0-9]*\\n(.)?L?L[\$]?etext

=== objc Summary ===

# of expected passes1685
# of unexpected failures1
# of unsupported tests  22
/build/buildd/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 (prerelease) 
(Debian 4.1.1-7)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes50
=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes228
# of unsupported tests  2
=== libmudflap tests ===


Running target unix

=== libmudflap Summary ===

# of expected passes1799
=== libstdc++ tests ===


Running target unix
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)

=== libst

Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-7) testsuite on mipsel-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===
FAIL:   c96005d
FAIL:   cc3120a

=== acats Summary ===
# of expected passes1959
# of unexpected failures2
# of unsupported tests  356
Native configuration is mipsel-unknown-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0
XPASS: g++.old-deja/g++.other/init5.C execution test

=== g++ Summary ===

# of expected passes12092
# of unexpected failures4
# of unexpected successes   2
# of expected failures  66
# of unsupported tests  107
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 4.1.2 
20060630 (prerelease) (Debian 4.1.1-7)

=== gcc tests ===


Running target unix
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O0 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O1 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O2 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer -funroll-loops 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 
-fomit-frame-pointer -funroll-all-loops -finline-functions 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -O3 -g 
FAIL: gcc.c-torture/execute/ieee/copysign1.c execution,  -Os 
FAIL: gcc.dg/attr-alias-3.c (test for excess errors)
FAIL: gcc.dg/fold-cond-1.c scan-tree-dump-times \\(g \\| h\\) != 0 1
FAIL: largefile.c -O0 -g (test for excess errors)
FAIL: largefile.c  -O0  (test for excess errors)
FAIL: largefile.c  -O1  (test for excess errors)
FAIL: largefile.c  -O2  (test for excess errors)
FAIL: largefile.c  -O3 -fomit-frame-pointer  (test for excess errors)
FAIL: largefile.c  -O3 -g  (test for excess errors)
FAIL: largefile.c  -Os  (test for excess errors)
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times link_error 0

=== gcc Summary ===

# of expected passes37514
# of unexpected failures17
# of unexpected successes   1
# of expected failures  76
# of untested testcases 35
# of unsupported tests  275
/build/buildd/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 (prerelease) 
(Debian 4.1.1-7)

=== gfortran tests ===


Running target unix
FAIL: gfortran.dg/secnds.f  -O0  execution test

=== gfortran Summary ===

# of expected passes12763
# of unexpected failures1
# of expected failures  12
# of unsupported tests  82
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/gfortran/../../gfortran  
version 4.1.2 20060630 (prerelease) (Debian 4.1.1-7)

=== obj-c++ tests ===


Running target unix
FAIL: obj-c++.dg/cxx-ivars-2.mm execution test
FAIL: obj-c++.dg/encode-8.mm execution test
FAIL: obj-c++.dg/isa-field-1.mm (test for excess errors)
FAIL: obj-c++.dg/lookup-2.mm (test for excess errors)
WARNING: obj-c++.dg/lookup-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-2.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-2.mm compilation failed to produce executable
FAIL: obj-c++.dg/try-catch-9.mm (test for excess errors)
WARNING: obj-c++.dg/try-catch-9.mm compilation failed to produce executable

=== obj-c++ Summary ===

# of expected passes423
# of unexpected failures6
# of unsupported tests  13
/build/buildd/gcc-4.1-4.1.1/build/gcc/testsuite/obj-c++/../../g++  version 
4.1.2 20060630 (prerelease) (Debian 4.1.1-7)

=== objc tests ===


Running target unix
FAIL: objc.dg/stabs-1.m scan-assembler 
(.SUBSPA.*[\$]CODE[\$]|.text"?)\\n\\t.stabs.*100,0,0,(.)?L?L[\$]?etext[0-9]*\\n(.)?L?L[\$]?etext

=== objc Summary ===

# of expected passes1685
# of unexpected failures1
# of unsupported tests  22
/build/buildd/gcc-4.1-4.1.1/build/gcc/xgcc  version 4.1.2 20060630 (prerelease) 
(Debian 4.1.1-7)

=== treelang tests ===


Running target unix

=== treelang Summary ===

# of expected passes50
=== libffi tests ===


Running target unix

=== libffi Summary ===

# of expected passes228
# of unsupported tests  2
=== libmudflap tests ===


Running target unix

=== libmudflap Summary ===

# of expected passes1799
=== libstdc++ tests ===


Running target unix
XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors)

=== lib

Results for 4.1.2 20060630 (prerelease) (Debian 4.1.1-6) testsuite on powerpc-unknown-linux-gnu

2006-07-03 Thread Matthias Klose
LAST_UPDATED: Fri Jun 30 23:01:28 UTC 2006 (revision 115107)

=== acats tests ===

=== acats Summary ===
# of expected passes2317
# of unexpected failures0
Native configuration is powerpc-unknown-linux-gnu

=== g++ tests ===


Running target unix
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0

=== g++ Summary for unix ===

# of expected passes12195
# of unexpected failures4
# of unexpected successes   1
# of expected failures  66
# of unsupported tests  91

Running target unix/-m64
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C  (test for errors, line 5)
FAIL: g++.dg/parse/access10.C (test for excess errors)
XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0

=== g++ Summary for unix/-m64 ===

# of expected passes12157
# of unexpected failures4
# of unexpected successes   1
# of expected failures  66
# of unsupported tests  94

=== g++ Summary ===

# of expected passes24352
# of unexpected failures8
# of unexpected successes   2
# of expected failures  132
# of unsupported tests  185
/home/doko/gcc/4.1/gcc-4.1-4.1.1/build/gcc/testsuite/g++/../../g++  version 
4.1.2 20060630 (prerelease) (Debian 4.1.1-6)

=== gcc tests ===


Running target unix
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC[0-9]
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
FAIL: gcc.target/powerpc/pr18096-1.c stack frame too large (test for warnings, 
line 11)
FAIL: gcc.target/powerpc/pr18096-1.c (test for excess errors)

=== gcc Summary for unix ===

# of expected passes38688
# of unexpected failures8
# of expected failures  99
# of untested testcases 28
# of unsupported tests  313

Running target unix/-m64
FAIL: gcc.dg/20020103-1.c scan-assembler-not LC[0-9]
FAIL: gcc.dg/20020919-1.c  (test for errors, line 106)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 124)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 133)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 160)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 178)
FAIL: gcc.dg/20020919-1.c  (test for errors, line 232)
FAIL: gcc.dg/cleanup-10.c execution test
FAIL: gcc.dg/cleanup-11.c execution test
FAIL: gcc.dg/cleanup-8.c execution test
FAIL: gcc.dg/cleanup-9.c execution test
XPASS: gcc.dg/tree-ssa/sra-2.c scan-tree-dump-times link_error 0
FAIL: gcc.dg/vect/pr20122.c scan-tree-dump-times vectorized 1 loops 2
FAIL: gcc.misc-tests/linkage.c link
FAIL: gcc.target/powerpc/20050603-3.c scan-assembler-not inm
FAIL: gcc.target/powerpc/980827-1.c (test for excess errors)
WARNING: gcc.target/powerpc/980827-1.c compilation failed to produce executable
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 7)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 8)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 9)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 10)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 11)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 12)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 14)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 15)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 16)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 20)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 21)
FAIL: gcc.target/powerpc/altivec-14.c  (test for warnings, line 22)
FAIL: gcc.target/powerpc/altivec-14.c (test for excess errors)
FAIL: gcc.target/powerpc/altivec-22.c scan-assembler-not mfcr
FAIL: gcc.target/powerpc/ppc-sdata-1.c (test for excess errors)
ERROR: gcc.target/powerpc/ppc-sdata-1.c: error executing dg-final: couldn't 
open "ppc-sdata-1.s": no such file or directory
UNRESOLVED: gcc.target/powerpc/ppc-sdata-1.c: error executing dg-final: 
couldn't open "ppc-sdata-1.s": no such file or directory
FAIL: gcc.target/powerpc/ppc-sdata-2.c (test for excess errors)
ERROR: gcc.target/powerpc/ppc-sdata-2.c: error executing dg-final: couldn't 
open "ppc-sdata-2.s": no such file or directory
UNRESOLVED: gcc.target/powerpc/ppc-sdata-2.c: error executing dg-final: 
couldn't open "ppc-sdata-2.s": no such file or directory
FAIL: gcc.target/powerpc/pr18096-1.c stack frame too la

[Bug c++/28225] [4.0/4.1/4.2 regression] segfault in type_dependent_expression_p

2006-07-03 Thread fang at csl dot cornell dot edu


-- 

fang at csl dot cornell dot edu changed:

   What|Removed |Added

 CC||fang at csl dot cornell dot
   ||edu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28225

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#376660: [alpha] check whether compiler driver understands Ada fails

2006-07-03 Thread Matthias Klose
Package: gnat-4.1
Severity: important

:0: warning: 'const' attribute directive ignored
:0: warning: 'nothrow' attribute directive ignored
:0: warning: 'nothrow' attribute directive ignored
:0: warning: 'const' attribute directive ignored
[...]

The check tests for the error code _and_ for the compiler stderr
output, and then assumes that the driver doesn't understand Ada.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]