[Bug c++/58549] [4.9 Regression] [c++1y] ICE with local function in function with auto parameter

2013-09-29 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58549 --- Comment #5 from Volker Reichelt reichelt at gcc dot gnu.org --- It's a GNU extension, see comment #2 in PR58536.

[Bug c++/58560] New: [4.7/4.8/4.9 Regression] ICE with auto in typedef

2013-09-28 Thread reichelt at gcc dot gnu.org
: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following code snippet (compiled with -std=c++0x) triggers an ICE since GCC 4.7.0: typedef auto T; void foo() { T(); } bug.cc:1:14: error

[Bug c++/58561] New: [c++0x] ICE using declaration of function with auto in return type

2013-09-28 Thread reichelt at gcc dot gnu.org
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following (valid?) code snippet (compiled with -std=c++0x -g) triggers an ICE since GCC 4.8.0: = auto foo(); namespace N { using ::foo

[Bug c++/58563] New: [c++0x] ICE calling invalid destructor

2013-09-28 Thread reichelt at gcc dot gnu.org
++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following code snippet (compiled with -std=c++0x) triggers an ICE since GCC 4.4.0: == templateint void foo() { enum E {}; E().E::~T

[Bug c++/58565] New: [c++0x] ICE with label in statement expression

2013-09-28 Thread reichelt at gcc dot gnu.org
++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet triggers an ICE since GCC 4.6.0 when compiled with -std=c++0x: === void foo() { int i = ({ L: ; }); } === bug.cc

[Bug c++/58566] New: [c++0x] ICE with invalid expression in lambda body

2013-09-28 Thread reichelt at gcc dot gnu.org
: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet (compiled with -std=c++0x) triggers an ICE since GCC 4.8.0: = struct A { int foo() { [this]{ return foo

[Bug c++/58567] New: [4.8/4.9 Regression] ICE with invalid loop variable in template using openmp

2013-09-28 Thread reichelt at gcc dot gnu.org
: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet (compiled with -fopenmp) triggers an ICE since GCC 4.8.0

[Bug c++/58568] New: [4.8/4.9 Regression] ICE with lambda in invalid template variable definition

2013-09-28 Thread reichelt at gcc dot gnu.org
: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet (compiled with -std=c++0x) triggers an ICE since GCC 4.8.1

[Bug c++/58500] [C++1y] Crash with auto in function parameter

2013-09-28 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58500 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug c++/58548] New: ICE with local struct in function with auto parameter

2013-09-27 Thread reichelt at gcc dot gnu.org
Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following code snippet triggers an ICE on trunk (4.9.0 20130926) when compiled with -std=gnu++1y: === void foo(auto) { struct A { int i

[Bug c++/58549] New: [c++1y] ICE with local function in function with auto parameter

2013-09-27 Thread reichelt at gcc dot gnu.org
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following valid code snippet (compiled with -std=gnu++1y) triggers an ICE on trunk (4.9.0 20130926): === void foo(auto) { void bar

[Bug c++/58550] New: [4.9 Regression] ][c++0x] ICE with auto in function return type and lto

2013-09-27 Thread reichelt at gcc dot gnu.org
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following (probably invalid) code snippet triggers an ICE on trunk (4.9.0 20130926) when compiled with std=c++0x -flto: auto foo

[Bug c++/58549] [4.9 Regression] [c++1y] ICE with local function in function with auto parameter

2013-09-27 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58549 --- Comment #2 from Volker Reichelt reichelt at gcc dot gnu.org --- To me they look like a (syntactically simpler) alternative to template parameters. They were introduced here: 2013-09-16 Adam Butcher a...@jessamine.co.uk * cp-tree.h

[Bug c++/58533] New: [c++1y] ICE with auto in function pointer

2013-09-25 Thread reichelt at gcc dot gnu.org
++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet (compiled with -std=gnu++1y) triggers an ICE on trunk (4.9.0 20130922): = void foo() { void (*fp)(auto); } = bug.cc

[Bug c++/58534] New: [c++1y] ICE with auto in template function parameters

2013-09-25 Thread reichelt at gcc dot gnu.org
Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following (valid, I think) code snippet (compiled with -std=c++1y) triggers an ICE on trunk (4.9.0 20130922

[Bug c++/58535] New: [4.8/4.9 Regression] ICE with virtual template function

2013-09-25 Thread reichelt at gcc dot gnu.org
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet triggers an ICE since GCC 4.8.0: == struct A { templateint virtual void foo

[Bug c++/58536] New: [c++1y] ICE with auto in constructor

2013-09-25 Thread reichelt at gcc dot gnu.org
++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following (valid, I think) code snippet (compiled with -std=gnu++1y) triggers an ICE on trunk (4.9.0 20130922): struct A { A(auto); }; A::A(auto) {} bug.cc:6:10

[Bug c++/58510] New: [4.9 regression] [c++0x] ICE with multiple non-static data initializations in union

2013-09-23 Thread reichelt at gcc dot gnu.org
Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet (compiled with -std=c++0x) triggers an ICE on trunk: void foo() { union

[Bug c++/58511] New: [c++0x] ICE using static const member variable in constexpr

2013-09-23 Thread reichelt at gcc dot gnu.org
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet (compiled with -std=c++0x) triggers an ICE since GCC 4.8.0 (when inheriting constructors were introduced

[Bug c++/58516] New: ICE with __transaction_atomic

2013-09-23 Thread reichelt at gcc dot gnu.org
++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following code snippet (compiled with -std=c++0x -fgnu-tm) triggers an ICE since GCC 4.7.0 (when transactional memory was introduced): = void foo

[Bug c++/58518] New: [4.8/4.9 regression] ICE template specialization

2013-09-23 Thread reichelt at gcc dot gnu.org
: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following valid code snippet triggers an ICE since GCC 4.8.0: templatetypename T struct A { templateT, T struct B {}; templateT t struct Bt, t

[Bug c++/58500] New: Crash with auto as function parameter

2013-09-22 Thread reichelt at gcc dot gnu.org
++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following (valid) testcase crashes when compiled with -std=gnu++1y: = struct A {}; void foo(auto (A::*)()); = bug.cc:3:22: internal compiler

[Bug c++/58501] New: [4.7/4.8/4.9 regression] [c++0x] Crash with brace-enclosed initializer as default parameter

2013-09-22 Thread reichelt at gcc dot gnu.org
Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following valid code snippet (compiled with -std=gnu++0x) triggers an ICE since GCC 4.7.0: struct

[Bug c++/58501] [4.7/4.8/4.9 regression] [c++0x] Crash with brace-enclosed initializer as default parameter

2013-09-22 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58501 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Known to work|4.6.4

[Bug lto/58502] New: ICE with attribute(target) and -flto

2013-09-22 Thread reichelt at gcc dot gnu.org
Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following valid code snippet triggers an ICE since GCC 4.8.0 when compiled with g++ -flto int foo(); int foo() __attribute__((target(default

[Bug lto/58502] ICE with attribute(target) and -flto

2013-09-22 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58502 --- Comment #1 from Volker Reichelt reichelt at gcc dot gnu.org --- Well, the above code snippet only fails on trunk (GCC 4.9.0), but the testcase below fails since GCC 4.8.0: int foo(); int

[Bug c++/58503] New: ICE with invalid range in range-based for-loop

2013-09-22 Thread reichelt at gcc dot gnu.org
++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following invalid code snippet (compiled with -std=c++0x) triggers an ICE since GCC 4.7.0: === templateint void foo() { for (auto i : 0

[Bug c++/58504] New: ICE with type trait as default template parameter

2013-09-22 Thread reichelt at gcc dot gnu.org
: c++ Assignee: unassigned at gcc dot gnu.org Reporter: reichelt at gcc dot gnu.org The following valid code snippet triggers an ICE since GCC 4.6.0: = templatebool = __has_nothrow_assign(void) struct

[Bug c++/51219] [4.6/4.7/4.8/4.9 regression] ICE with empty bit-fields

2013-09-22 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51219 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Summary|ICE with designated |[4.6/4.7/4.8

[Bug lto/50490] ICE when compiling libglib2.0 with LTO, tree code 'optimization_node' is not supported in LTO streams

2012-01-07 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50490 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug c++/51786] New: [c++0x] Invalid declaration with decltype accepted

2012-01-07 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51786 Bug #: 51786 Summary: [c++0x] Invalid declaration with decltype accepted Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/21120] Empty declaration with typeof accepted

2012-01-07 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21120 --- Comment #5 from Volker Reichelt reichelt at gcc dot gnu.org 2012-01-07 16:21:08 UTC --- Well, decltype has the same problems, so I opened a new bug report, see PR51786.

[Bug c++/51633] New: [c++0x] [4.6/4.7 Regression] ICE with invalid constexpr constructor

2011-12-20 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51633 Bug #: 51633 Summary: [c++0x] [4.6/4.7 Regression] ICE with invalid constexpr constructor Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug c++/51633] [c++0x] [4.6/4.7 Regression] ICE with invalid constexpr constructor

2011-12-20 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51633 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice

[Bug c++/33475] New warning suggestion: virtual functions called from constructors/destructors

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33475 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug c++/24058] g++ should warn about virtual methods called in constructors and destructors

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24058 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added CC||yuri

[Bug c++/51611] New: [c++0x] ICE with non-static data member initializer and virtual base class

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51611 Bug #: 51611 Summary: [c++0x] ICE with non-static data member initializer and virtual base class Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug c++/51612] New: [c++0x] [4.7 Regression] ICE with constexpr constructor and virtual base class

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51612 Bug #: 51612 Summary: [c++0x] [4.7 Regression] ICE with constexpr constructor and virtual base class Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug c++/51612] [c++0x] [4.7 Regression] ICE with constexpr constructor and virtual base class

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51612 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice-on-valid

[Bug c++/51614] New: [4.6/4.7 Regression] ICE with ambiguous base class

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51614 Bug #: 51614 Summary: [4.6/4.7 Regression] ICE with ambiguous base class Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51614] [4.6/4.7 Regression] ICE with ambiguous base class

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51614 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||diagnostic

[Bug c++/51619] New: [c++0x] [4.6/4.7 Regression] ICE with array class member

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51619 Bug #: 51619 Summary: [c++0x] [4.6/4.7 Regression] ICE with array class member Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51619] [c++0x] [4.6/4.7 Regression] ICE with array class member

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51619 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice-on-valid

[Bug c++/51620] New: [c++0x] [4.6/4.7 Regression] ICE with private destructor

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51620 Bug #: 51620 Summary: [c++0x] [4.6/4.7 Regression] ICE with private destructor Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51620] [c++0x] [4.6/4.7 Regression] ICE with private destructor

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51620 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||diagnostic

[Bug c++/51621] New: [c++0x] [4.6/4.7 Regression] ICE with invalid constexpr and array class member

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51621 Bug #: 51621 Summary: [c++0x] [4.6/4.7 Regression] ICE with invalid constexpr and array class member Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug c++/51621] [c++0x] [4.6/4.7 Regression] ICE with invalid constexpr and array class member

2011-12-18 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51621 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug middle-end/51585] New: [4.7 Regression] verify_flow_info failed ICE with virtual inheritance

2011-12-16 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51585 Bug #: 51585 Summary: [4.7 Regression] verify_flow_info failed ICE with virtual inheritance Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug middle-end/51585] [4.7 Regression] verify_flow_info failed ICE with virtual inheritance

2011-12-16 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51585 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice-on-valid

[Bug c++/51586] New: [4.7 Regression] ICE with invalid union

2011-12-16 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51586 Bug #: 51586 Summary: [4.7 Regression] ICE with invalid union Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority:

[Bug c++/51586] [4.7 Regression] ICE with invalid union

2011-12-16 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51586 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51587] New: [4.7 Regression] ICE with struct vs. enum clash

2011-12-16 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51587 Bug #: 51587 Summary: [4.7 Regression] ICE with struct vs. enum clash Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51587] [4.7 Regression] ICE with struct vs. enum clash

2011-12-16 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51587 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice-checking

[Bug c++/51588] New: [4.4/4.5/4.6/4.7 Regression] ICE

2011-12-16 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51588 Bug #: 51588 Summary: [4.4/4.5/4.6/4.7 Regression] ICE Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c++/51461] New: [c++0x] [4.7 Regression] ICE with invalid initialization of static data member

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51461 Bug #: 51461 Summary: [c++0x] [4.7 Regression] ICE with invalid initialization of static data member Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug c++/51461] [c++0x] [4.7 Regression] ICE with invalid initialization of static data member

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51461 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice

[Bug c++/51462] New: [c++0x] ICE in cx_check_missing_mem_inits

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51462 Bug #: 51462 Summary: [c++0x] ICE in cx_check_missing_mem_inits Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51463] New: [c++0x] [4.7 Regression] ICE declaring a member function virtual and static

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51463 Bug #: 51463 Summary: [c++0x] [4.7 Regression] ICE declaring a member function virtual and static Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug c++/51463] [c++0x] [4.7 Regression] ICE declaring a member function virtual and static

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51463 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51464] New: [c++0x] ICE with invalid use of []

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51464 Bug #: 51464 Summary: [c++0x] ICE with invalid use of [] Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c++/51473] New: [c++0x] ICE with auto and friend

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51473 Bug #: 51473 Summary: [c++0x] ICE with auto and friend Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c++/51474] New: [c++0x] ICE with pure virtual function in initialization of non-static data member

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51474 Bug #: 51474 Summary: [c++0x] ICE with pure virtual function in initialization of non-static data member Classification: Unclassified Product: gcc Version: 4.7.0

[Bug c++/51475] [c++0x] [4.7 Regression] ICE with invalid initializer_list

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51475 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice-on-valid

[Bug c++/51475] New: [c++0x] [4.7 Regression] ICE with invalid initializer_list

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51475 Bug #: 51475 Summary: [c++0x] [4.7 Regression] ICE with invalid initializer_list Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51476] New: [c++0x] [4.7 Regression] ICE with invalid pointer-to-member template parameter

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51476 Bug #: 51476 Summary: [c++0x] [4.7 Regression] ICE with invalid pointer-to-member template parameter Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug c++/51476] [c++0x] [4.7 Regression] ICE with invalid pointer-to-member template parameter

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51476 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice

[Bug c++/51477] New: [c++0x] ICE with initialization of invalid non-static data member

2011-12-08 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51477 Bug #: 51477 Summary: [c++0x] ICE with initialization of invalid non-static data member Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51215] [4.7 Regression] ICE with invalid array initializer

2011-12-07 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51215 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug debug/51262] [4.7 Regression] ICE: SIGSEGV in primary_template_instantiation_p (pt.c:2874) with -flto -g

2011-12-06 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51262 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last

[Bug c++/51431] [4.7 Regression] ICE with invalid use of abstract class

2011-12-06 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51431 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Summary|[4.4/4.5/4.6 Regression]|[4.7

[Bug c++/51429] New: [4.7 Regression] ICE with invalid use of overloaded member function

2011-12-05 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51429 Bug #: 51429 Summary: [4.7 Regression] ICE with invalid use of overloaded member function Classification: Unclassified Product: gcc Version: 4.7.0 Status:

[Bug c++/51429] [4.7 Regression] ICE with invalid use of overloaded member function

2011-12-05 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51429 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice

[Bug c++/51430] New: [4.7 Regression] ICE with array as static const member

2011-12-05 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51430 Bug #: 51430 Summary: [4.7 Regression] ICE with array as static const member Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51430] [4.7 Regression] ICE with array as static const member

2011-12-05 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51430 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51431] New: [4.5/4.6/4.7 Regression] ICE with invalid use of abstract class

2011-12-05 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51431 Bug #: 51431 Summary: [4.5/4.6/4.7 Regression] ICE with invalid use of abstract class Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51431] [4.4/4.5/4.6/4.7 Regression] ICE with invalid use of abstract class

2011-12-05 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51431 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51412] New: [c++0x] Broken diagnostic with invalid lambda expressions

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51412 Bug #: 51412 Summary: [c++0x] Broken diagnostic with invalid lambda expressions Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51413] New: Broken diagnostic with __builtin_offsetof

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51413 Bug #: 51413 Summary: Broken diagnostic with __builtin_offsetof Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51414] New: Broken diagnostic with invalid use of __underlying_type

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51414 Bug #: 51414 Summary: Broken diagnostic with invalid use of __underlying_type Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51415] New: Broken diagnostic: 'vec_init_expr' not supported by dump_expr

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51415 Bug #: 51415 Summary: Broken diagnostic: 'vec_init_expr' not supported by dump_expr Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51225] [c++0x] [4.7 Regression] ICE with invalid template parameter

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51225 --- Comment #2 from Volker Reichelt reichelt at gcc dot gnu.org 2011-12-04 22:46:24 UTC --- Here's another code snippet that triggers a similar ICE: struct A {}; templatetypename struct B { static

[Bug c++/51416] New: [c++0x] [4.6/4.7 Regression] ICE with invalid use of auto

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51416 Bug #: 51416 Summary: [c++0x] [4.6/4.7 Regression] ICE with invalid use of auto Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51416] [c++0x] [4.6/4.7 Regression] ICE with invalid use of auto

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51416 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice

[Bug c++/51420] New: [c++0x] ICE with invalid user-defined literals

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51420 Bug #: 51420 Summary: [c++0x] ICE with invalid user-defined literals Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51421] New: [c++0x] ICE with invalid use of auto

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51421 Bug #: 51421 Summary: [c++0x] ICE with invalid use of auto Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c++/51422] New: [c++0x] ICE with invalid lambda expression

2011-12-04 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51422 Bug #: 51422 Summary: [c++0x] ICE with invalid lambda expression Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51398] New: [4.7 Regression] ICE with invalid template parameter

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51398 Bug #: 51398 Summary: [4.7 Regression] ICE with invalid template parameter Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51398] [4.7 Regression] ICE with invalid template parameter

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51398 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51399] New: [4.7 Regression] ICE with invalid initializer list

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51399 Bug #: 51399 Summary: [4.7 Regression] ICE with invalid initializer list Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51399] [4.7 Regression] ICE with invalid initializer list

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51399 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51400] New: [c++0x] ICE with constexpr and attribute noreturn

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51400 Bug #: 51400 Summary: [c++0x] ICE with constexpr and attribute noreturn Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51401] New: [c++0x] [4.7 Regression] ICE with invalid use of auto in template

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51401 Bug #: 51401 Summary: [c++0x] [4.7 Regression] ICE with invalid use of auto in template Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51401] [c++0x] [4.7 Regression] ICE with invalid use of auto in template

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51401 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||ice-checking

[Bug c++/51402] New: [4.6/4.7 Regression] ICE with invalid template parameter

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51402 Bug #: 51402 Summary: [4.6/4.7 Regression] ICE with invalid template parameter Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED

[Bug c++/51402] [4.6/4.7 Regression] ICE with invalid template parameter

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51402 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51403] New: [4.7 Regression] ICE with invalid template parameter

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51403 Bug #: 51403 Summary: [4.7 Regression] ICE with invalid template parameter Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51403] [4.7 Regression] ICE with invalid template parameter

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51403 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51404] New: [c++0x] [4.7 Regression] ICE with invalid use of auto

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51404 Bug #: 51404 Summary: [c++0x] [4.7 Regression] ICE with invalid use of auto Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal

[Bug c++/51404] [c++0x] [4.7 Regression] ICE with invalid use of auto

2011-12-03 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51404 Volker Reichelt reichelt at gcc dot gnu.org changed: What|Removed |Added Keywords||error

[Bug c++/51367] New: [4.7 Regression] Broken diagnostic: 'pointer_type' not supported by dump_expr

2011-11-30 Thread reichelt at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51367 Bug #: 51367 Summary: [4.7 Regression] Broken diagnostic: 'pointer_type' not supported by dump_expr Classification: Unclassified Product: gcc Version: 4.7.0 Status:

<    2   3   4   5   6   7   8   >