[Bug c++/92024] crash in check_local_shadow

2024-07-31 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 --- Comment #9 from GCC Commits --- The master branch has been updated by Sam James : https://gcc.gnu.org/g:21fc6d35f27cdf4c56e9f093894f6728c55ecb0e commit r15-2440-g21fc6d35f27cdf4c56e9f093894f6728c55ecb0e Author: Sam James Date: Tue Jul 30

[Bug c++/92024] crash in check_local_shadow

2020-01-28 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 Martin Liška changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug c++/92024] crash in check_local_shadow

2020-01-27 Thread bernd.edlinger at hotmail dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 --- Comment #7 from Bernd Edlinger --- Yes, I guess so.

[Bug c++/92024] crash in check_local_shadow

2020-01-27 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/92024] crash in check_local_shadow

2019-11-15 Thread bernd.edlinger at hotmail dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 --- Comment #5 from Bernd Edlinger --- (In reply to Arseny Solokha from comment #4) > Is there a backport pending? I cannot reproduce this ICE on release branches. Hmm, interesting, I would have expected this to ICE. However this patch is not c

[Bug c++/92024] crash in check_local_shadow

2019-11-15 Thread asolokha at gmx dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 Arseny Solokha changed: What|Removed |Added CC||asolokha at gmx dot com --- Comment #4

[Bug c++/92024] crash in check_local_shadow

2019-10-30 Thread edlinger at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 --- Comment #3 from Bernd Edlinger --- Author: edlinger Date: Wed Oct 30 20:29:21 2019 New Revision: 277643 URL: https://gcc.gnu.org/viewcvs?rev=277643&root=gcc&view=rev Log: 2019-10-30 Bernd Edlinger * doc/invoke.texi (-Wshadow, -Ws

[Bug c++/92024] crash in check_local_shadow

2019-10-11 Thread bernd.edlinger at hotmail dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 --- Comment #2 from Bernd Edlinger --- there is alos a valid test case where an ICE happens: template struct S { S () { struct c; { struct c {}; } } }; S s;

[Bug c++/92024] crash in check_local_shadow

2019-10-08 Thread bernd.edlinger at hotmail dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92024 --- Comment #1 from Bernd Edlinger --- This seems to fix the ICE: Index: pt.c === --- pt.c(revision 276634) +++ pt.c(working copy) @@ -10973,6 +10973,9 @@ ||