[Bug c++/38798] [c++0x] Trouble with struct/class/enum keyword in late return types

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #3 from jason at gcc dot gnu dot org 2009-10-17 06:12 --- Subject: Bug 38798 Author: jason Date: Sat Oct 17 06:11:08 2009 New Revision: 152924 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152924 Log: PR c++/38798 * parser.c

[Bug c++/38888] [C++0x] badly readable diagnostic output with variadic templates

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #6 from jason at gcc dot gnu dot org 2009-10-17 06:12 --- Subject: Bug 3 Author: jason Date: Sat Oct 17 06:11:21 2009 New Revision: 152925 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152925 Log: PR c++/3 * error.c (dump_template_bindings):

[Bug debug/41535] [4.5 Regression] Broken var location info after scheduling

2009-10-17 Thread aoliva at gcc dot gnu dot org
--- Comment #3 from aoliva at gcc dot gnu dot org 2009-10-17 06:29 --- Subject: Bug 41535 Author: aoliva Date: Sat Oct 17 06:28:43 2009 New Revision: 152927 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152927 Log: PR debug/41535 * sched-deps.c (depl_on_debug_p): New.

[Bug debug/40521] [4.4/4.5 Regression] -g causes GCC to generate .eh_frame

2009-10-17 Thread jakub at gcc dot gnu dot org
--- Comment #20 from jakub at gcc dot gnu dot org 2009-10-17 07:28 --- Subject: Bug 40521 Author: jakub Date: Sat Oct 17 07:28:13 2009 New Revision: 152930 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152930 Log: PR debug/40521 * debug.h (struct

[Bug libgomp/41418] Can't build libgomp without --enable-languages=fortran

2009-10-17 Thread rwild at gcc dot gnu dot org
--- Comment #21 from rwild at gcc dot gnu dot org 2009-10-17 07:35 --- Subject: Bug 41418 Author: rwild Date: Sat Oct 17 07:34:47 2009 New Revision: 152931 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152931 Log: Fix libgomp without --enable-languages=fortran. libgomp/:

[Bug libgomp/41418] Can't build libgomp without --enable-languages=fortran

2009-10-17 Thread rwild at gcc dot gnu dot org
--- Comment #22 from rwild at gcc dot gnu dot org 2009-10-17 07:37 --- Fixed. -- rwild at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED

[Bug debug/41736] New: missing DW_TAG_template_*_ in some cases

2009-10-17 Thread dodji at gcc dot gnu dot org
Consider the short snippet: template int I struct S {}; S2 *s = 0; The debug info generated for the S2 type looks like: ~=~ .uleb128 0x2# (DIE (0x2d) DW_TAG_structure_type) .long .LASF3 # DW_AT_name: S2 .byte 0x1 # DW_AT_declaration ~=~ There is no DW_TAG_template_value_param

[Bug debug/41736] missing DW_TAG_template_*_ in some cases

2009-10-17 Thread dodji at gcc dot gnu dot org
-- dodji at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |dodji at gcc dot gnu dot org |dot org

[Bug libgomp/41737] New: [omp] missing error for undeclared variable in a parallel region with default(none)

2009-10-17 Thread jv244 at cam dot ac dot uk
In the attached code, the last parallel region is default(none), but doesn't declare np.This should generate an error instead (at least it does with cray and intel compilers). -- Summary: [omp] missing error for undeclared variable in a parallel region with

[Bug libgomp/41737] [omp] missing error for undeclared variable in a parallel region with default(none)

2009-10-17 Thread jv244 at cam dot ac dot uk
--- Comment #1 from jv244 at cam dot ac dot uk 2009-10-17 08:20 --- Created an attachment (id=18815) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18815action=view) testcase -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41737

[Bug libgomp/41737] [omp] missing error for undeclared variable in a parallel region with default(none)

2009-10-17 Thread jv244 at cam dot ac dot uk
--- Comment #2 from jv244 at cam dot ac dot uk 2009-10-17 08:27 --- Created an attachment (id=18816) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18816action=view) second test case here tb of the last parallel region is undeclared. --

[Bug middle-end/35903] false warning when passing quoted string to function strcmp(arg,no);

2009-10-17 Thread manu at gcc dot gnu dot org
--- Comment #4 from manu at gcc dot gnu dot org 2009-10-17 11:03 --- (In reply to comment #3) This bug has no changed for months, I think it is still active. Newer higher priority bugs often make us forget about old inactive bugs. Going through old bugs and testing whether they still

[Bug c++/41091] Using section attribute in c and c++ function causes section type conflict

2009-10-17 Thread mark at gcc dot gnu dot org
--- Comment #3 from mark at gcc dot gnu dot org 2009-10-17 11:28 --- See comment #2. -- mark at gcc dot gnu dot org changed: What|Removed |Added

[Bug debug/41736] missing DW_TAG_template_*_ in some cases

2009-10-17 Thread dodji at gcc dot gnu dot org
--- Comment #1 from dodji at gcc dot gnu dot org 2009-10-17 11:41 --- Patch sent to http://gcc.gnu.org/ml/gcc-patches/2009-10/msg01126.html . -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41736

[Bug lto/41652] LTO plugin misconfiguration

2009-10-17 Thread d dot g dot gorbachev at gmail dot com
--- Comment #1 from d dot g dot gorbachev at gmail dot com 2009-10-17 14:38 --- Patch: http://gcc.gnu.org/ml/gcc-patches/2009-10/msg01129.html. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41652

[Bug middle-end/41738] New: optabs expands rotate using wrong mode

2009-10-17 Thread hutchinsonandy at gcc dot gnu dot org
I have been adding rotate capability to AVR port and have come this bug in optabs.c: expand_binop() This occurs during a rotate expansion. For example target = op0 rotated by op1 In the particular situation (code extract below) it tries a reverse rotate of (bits - op1). Where this expression

[Bug middle-end/41738] optabs expands rotate using wrong mode

2009-10-17 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2009-10-17 15:04 --- Confirmed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/38888] [C++0x] badly readable diagnostic output with variadic templates

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #7 from jason at gcc dot gnu dot org 2009-10-17 15:41 --- Fixed for 4.5.0. -- jason at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/39866] [c++0x] deleted functions not removed from no match error messages

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #4 from jason at gcc dot gnu dot org 2009-10-17 15:41 --- Fixed for 4.5.0. -- jason at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/41739] New: [4.5 Regression] Failed to bootstrap on Linux/ia64

2009-10-17 Thread hjl dot tools at gmail dot com
Revision 152933 gave: /export/gnu/import/svn/gcc-test/bld/./prev-gcc/xgcc -B/export/gnu/import/svn/gcc-test/bld/./prev-gcc/ -B/usr/local/ia64-unknown-linux-gnu/bin/ -B/usr/local/ia64-unknown-linux-gnu/bin/ -B/usr/local/ia64-unknown-linux-gnu/lib/ -isystem /usr/local/ia64-unknown-linux-gnu/include

[Bug middle-end/41739] [4.5 Regression] Failed to bootstrap on Linux/ia64

2009-10-17 Thread rguenth at gcc dot gnu dot org
-- rguenth at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.5.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41739

[Bug middle-end/41734] ICE in cgraph_mark_functions_to_output, at cgraphunit.c:1137 with -fwhopr

2009-10-17 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2009-10-17 18:02 --- So, why do we complain here: gcc_assert (node-global.inlined_to || !gimple_has_body_p (decl) || DECL_EXTERNAL (decl)); for read_error/5(-1) @0xb7d33200 (clone

[Bug fortran/41608] ICE with CLASS and invalid code

2009-10-17 Thread pault at gcc dot gnu dot org
--- Comment #2 from pault at gcc dot gnu dot org 2009-10-17 18:09 --- Subject: Bug 41608 Author: pault Date: Sat Oct 17 18:09:25 2009 New Revision: 152955 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152955 Log: 2009-10-17 Janus Weil ja...@gcc.gnu.org Paul Thomas

[Bug fortran/41629] [OOP] gimplification error on valid code

2009-10-17 Thread pault at gcc dot gnu dot org
--- Comment #1 from pault at gcc dot gnu dot org 2009-10-17 18:09 --- Subject: Bug 41629 Author: pault Date: Sat Oct 17 18:09:25 2009 New Revision: 152955 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152955 Log: 2009-10-17 Janus Weil ja...@gcc.gnu.org Paul Thomas

[Bug fortran/41618] [OOP] accepts-invalid with CLASS pointer component

2009-10-17 Thread pault at gcc dot gnu dot org
--- Comment #2 from pault at gcc dot gnu dot org 2009-10-17 18:09 --- Subject: Bug 41618 Author: pault Date: Sat Oct 17 18:09:25 2009 New Revision: 152955 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152955 Log: 2009-10-17 Janus Weil ja...@gcc.gnu.org Paul Thomas

[Bug fortran/41587] [OOP] ICE with ALLOCATABLE CLASS components

2009-10-17 Thread pault at gcc dot gnu dot org
--- Comment #2 from pault at gcc dot gnu dot org 2009-10-17 18:09 --- Subject: Bug 41587 Author: pault Date: Sat Oct 17 18:09:25 2009 New Revision: 152955 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152955 Log: 2009-10-17 Janus Weil ja...@gcc.gnu.org Paul Thomas

[Bug target/40720] Optimizer Bug: bad register name

2009-10-17 Thread mckelvey at maskull dot com
--- Comment #2 from mckelvey at maskull dot com 2009-10-17 18:59 --- (In reply to comment #1) I'm unsure how to proceed, as temp files will be very large Zip them up. I rebuilt from latest subversion and problem no longer occurs. We can close this bug! --

[Bug c++/40723] Optimizer Causes Undefined References

2009-10-17 Thread mckelvey at maskull dot com
--- Comment #3 from mckelvey at maskull dot com 2009-10-17 19:02 --- Latest from subversion, bug no longer occurs. I think we can close. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40723

[Bug fortran/41733] Proc-pointer conformance checks: Elemental-proc-ptr = non-elemental-proc

2009-10-17 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2009-10-17 19:07 --- There is the following additional restriction, which I could not find (Thanks James!): C728 (R742) The proc-target shall not be a nonintrinsic elemental procedure. --

[Bug c++/40723] Optimizer Causes Undefined References

2009-10-17 Thread manu at gcc dot gnu dot org
--- Comment #4 from manu at gcc dot gnu dot org 2009-10-17 19:24 --- The reporter cannot reproduce this anymore, no testcase available. Closed as WORKSFORME. Please reopen if you find a testcase or it fails again. -- manu at gcc dot gnu dot org changed: What|Removed

[Bug target/40720] Optimizer Bug: bad register name

2009-10-17 Thread ubizjak at gmail dot com
--- Comment #3 from ubizjak at gmail dot com 2009-10-17 19:28 --- (In reply to comment #2) I rebuilt from latest subversion and problem no longer occurs. We can close this bug! Fixed. -- ubizjak at gmail dot com changed: What|Removed |Added

[Bug libstdc++/41351] std::rotate on RAI does not conform to ISO complexity requirement

2009-10-17 Thread potswa at mac dot com
--- Comment #33 from potswa at mac dot com 2009-10-17 20:45 --- I returned the copyright forms today, so now the wheels are turning :vD . -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41351

[Bug middle-end/39246] FAIL: gcc.dg/uninit-13.c

2009-10-17 Thread mikpe at it dot uu dot se
--- Comment #3 from mikpe at it dot uu dot se 2009-10-17 22:08 --- I just had a look at some gcc-4.4.2 testsuite failure on arm-linux-gnueabi, and came across the uninit-13.c one and this PR. The error is not that uninit-13.c triggers an is used uninitialized warning, it's supposed to

[Bug middle-end/41738] optabs expands rotate using wrong mode

2009-10-17 Thread hutchinsonandy at gcc dot gnu dot org
--- Comment #2 from hutchinsonandy at gcc dot gnu dot org 2009-10-17 22:42 --- Subject: Bug 41738 Author: hutchinsonandy Date: Sat Oct 17 22:42:17 2009 New Revision: 152961 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152961 Log: 2009-10-17 Andy Hutchinson

[Bug middle-end/41738] optabs expands rotate using wrong mode

2009-10-17 Thread hutchinsonandy at gcc dot gnu dot org
-- hutchinsonandy at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.4.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41738

[Bug libstdc++/40826] [C++0x] atomic_flag_{test_and_set,clear}_explicit() are apparently broken

2009-10-17 Thread bkoz at gcc dot gnu dot org
--- Comment #3 from bkoz at gcc dot gnu dot org 2009-10-18 03:20 --- Mine. -- bkoz at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at

[Bug libstdc++/40654] [C++0x] atomic.cc: 'd' is used uninitialized warning

2009-10-17 Thread bkoz at gcc dot gnu dot org
--- Comment #6 from bkoz at gcc dot gnu dot org 2009-10-18 03:30 --- Subject: Bug 40654 Author: bkoz Date: Sun Oct 18 03:30:03 2009 New Revision: 152965 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152965 Log: 2009-10-16 Benjamin Kosnik b...@redhat.com *

[Bug libstdc++/40826] [C++0x] atomic_flag_{test_and_set,clear}_explicit() are apparently broken

2009-10-17 Thread bkoz at gcc dot gnu dot org
--- Comment #4 from bkoz at gcc dot gnu dot org 2009-10-18 03:30 --- Subject: Bug 40826 Author: bkoz Date: Sun Oct 18 03:30:03 2009 New Revision: 152965 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152965 Log: 2009-10-16 Benjamin Kosnik b...@redhat.com *

[Bug debug/41535] [4.5 Regression] Broken var location info after scheduling

2009-10-17 Thread aoliva at gcc dot gnu dot org
--- Comment #4 from aoliva at gcc dot gnu dot org 2009-10-18 04:57 --- Fixed -- aoliva at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug c++/37875] [c++0x] misinterpreted closing angle bracket in decltype operand

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #4 from jason at gcc dot gnu dot org 2009-10-18 05:13 --- Subject: Bug 37875 Author: jason Date: Sun Oct 18 05:13:05 2009 New Revision: 152966 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152966 Log: PR c++/38798 * parser.c

[Bug c++/37766] [C++0x] ICE with function's default reference template parameter

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #8 from jason at gcc dot gnu dot org 2009-10-18 05:13 --- Subject: Bug 37766 Author: jason Date: Sun Oct 18 05:13:05 2009 New Revision: 152966 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152966 Log: PR c++/38798 * parser.c

[Bug c++/38798] [c++0x] Trouble with struct/class/enum keyword in late return types

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #4 from jason at gcc dot gnu dot org 2009-10-18 05:13 --- Subject: Bug 38798 Author: jason Date: Sun Oct 18 05:13:05 2009 New Revision: 152966 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152966 Log: PR c++/38798 * parser.c

[Bug c++/37204] [c++0x] reinterpret_castT(v) incorrectly yields an lvalue

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #4 from jason at gcc dot gnu dot org 2009-10-18 05:13 --- Subject: Bug 37204 Author: jason Date: Sun Oct 18 05:13:05 2009 New Revision: 152966 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152966 Log: PR c++/38798 * parser.c

[Bug c++/40092] [c++0x] expansion pattern fails with error about derived template instead of actual template

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #17 from jason at gcc dot gnu dot org 2009-10-18 05:13 --- Subject: Bug 40092 Author: jason Date: Sun Oct 18 05:13:05 2009 New Revision: 152966 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=152966 Log: PR c++/38798 * parser.c

[Bug c++/38798] [c++0x] Trouble with struct/class/enum keyword in late return types

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #5 from jason at gcc dot gnu dot org 2009-10-18 05:16 --- Fixed for 4.4.3, 4.5. -- jason at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/37204] [c++0x] reinterpret_castT(v) incorrectly yields an lvalue

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #5 from jason at gcc dot gnu dot org 2009-10-18 05:16 --- Fixed for 4.4.3. -- jason at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/37766] [C++0x] ICE with function's default reference template parameter

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #9 from jason at gcc dot gnu dot org 2009-10-18 05:17 --- Fixed for 4.4.3. -- jason at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/37875] [c++0x] misinterpreted closing angle bracket in decltype operand

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #5 from jason at gcc dot gnu dot org 2009-10-18 05:17 --- Fixed for 4.4.3. -- jason at gcc dot gnu dot org changed: What|Removed |Added Target

[Bug c++/37875] [c++0x] misinterpreted closing angle bracket in decltype operand

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #6 from jason at gcc dot gnu dot org 2009-10-18 05:17 --- . -- jason at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug c++/40092] [c++0x] expansion pattern fails with error about derived template instead of actual template

2009-10-17 Thread jason at gcc dot gnu dot org
--- Comment #18 from jason at gcc dot gnu dot org 2009-10-18 05:19 --- Fixed for 4.4.3. -- jason at gcc dot gnu dot org changed: What|Removed |Added CC|

[Bug c++/38796] [c++0x] defaulted operator= with non-default return type accepted

2009-10-17 Thread jason at gcc dot gnu dot org
-- jason at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jason at gcc dot gnu dot org |dot org