[Bug c++/25701] gcc.texi missing @direntry for g++

2008-01-21 Thread bje at gcc dot gnu dot org
-- bje at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |bje at gcc dot gnu dot org |dot org

[Bug preprocessor/34695] Preprocessor warning->error conversion from -Werror is silent

2008-01-21 Thread manu at gcc dot gnu dot org
--- Comment #8 from manu at gcc dot gnu dot org 2008-01-22 05:52 --- (In reply to comment #7) > Created an attachment (id=14994) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14994&action=view) [edit] > gcc-cpp-Werror-message.patch > > de-obfuscate the pedwarn code path > Hi, Ed

[Bug c++/34917] [4.2/4.3 regression] ICE with const vector

2008-01-21 Thread cnstar9988 at gmail dot com
--- Comment #2 from cnstar9988 at gmail dot com 2008-01-22 06:01 --- Confirmed gcc 4.2.2. test.cc = const int i __attribute((vector_size(8))) = {}; int main(int argc, char **argv) { return 0; } ===

[Bug fortran/34896] [4.3 Regression] libgomp.fortran/reduction5.f90

2008-01-21 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2008-01-22 06:02 --- Subject: Bug 34896 Author: pault Date: Tue Jan 22 06:01:54 2008 New Revision: 131712 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=131712 Log: 2008-01-22 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug c++/34920] Members in nameless union

2008-01-21 Thread extronus at gmail dot com
--- Comment #2 from extronus at gmail dot com 2008-01-22 06:04 --- more simplified - template struct base { float a; }; template class derv : public base { void der_funk() { a = 0; } }; while this one works -- template struct base { float a; }

[Bug c++/34919] ICE with invalid use of parameter pack

2008-01-21 Thread steven at gcc dot gnu dot org
--- Comment #1 from steven at gcc dot gnu dot org 2008-01-22 06:06 --- ...and does not ICE with version...? -- steven at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/34896] [4.3 Regression] libgomp.fortran/reduction5.f90

2008-01-21 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2008-01-22 06:08 --- I think that you will find that has gone, as promised. Thanks Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/34921] Misalign stack variable referenced by nested function

2008-01-21 Thread Joey dot ye at intel dot com
--- Comment #1 from Joey dot ye at intel dot com 2008-01-22 06:38 --- This patch should fix it: Index: gcc/tree-nested.c === --- gcc/tree-nested.c (revision 131342) +++ gcc/tree-nested.c (working copy) @@ -183,6 +183,10

[Bug c++/33984] [4.2/4.3 Regression] bit-fields, references and overloads

2008-01-21 Thread aoliva at gcc dot gnu dot org
--- Comment #7 from aoliva at gcc dot gnu dot org 2008-01-22 06:44 --- Responded on gcc-patches, with revised patch. http://gcc.gnu.org/ml/gcc-patches/2008-01/msg00988.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33984

[Bug c/34921] New: Misalign stack variable referenced by nested function

2008-01-21 Thread Joey dot ye at intel dot com
> cat nested-2.c #include #include typedef int aligned __attribute__((aligned(16))); int global; void check (int *i) { *i = 20; if int) i) & (__alignof__(aligned) - 1)) != 0) { printf("\nUnalign address (%d): %p!\n", __alignof__(aligned), i); abort (); }

[Bug other/31349] [4.3 Regression] gcc -v --help returns no options for C, C++

2008-01-21 Thread manu at gcc dot gnu dot org
--- Comment #8 from manu at gcc dot gnu dot org 2008-01-22 07:51 --- Can't we get this fixed soon? It is marked as a P2 regression. (In reply to comment #7) > Subject: Re: [4.3 Regression] gcc -v --help returns no options > You can find out all the options supported by a given langua

[Bug fortran/34899] Continuation lines with not recognized

2008-01-21 Thread burnus at gcc dot gnu dot org
--- Comment #6 from burnus at gcc dot gnu dot org 2008-01-22 07:34 --- Subject: Bug 34899 Author: burnus Date: Tue Jan 22 07:33:46 2008 New Revision: 131713 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=131713 Log: 2008-01-22 Tobias Burnus <[EMAIL PROTECTED]> PR fort

<    1   2   3