[Bug libgomp/90596] 'GOACC_parallel_keyed' should use 'GOMP_MAP_VARS_TARGET'

2023-03-11 Thread tschwinge at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90596 Thomas Schwinge changed: What|Removed |Added Target Milestone|--- |13.0 Status|UNCONFIRMED

[Bug target/109104] New: [13 Regression] ICE: in gen_reg_rtx, at emit-rtl.cc:1171 with -fzero-call-used-regs=all -march=rv64gv

2023-03-11 Thread zsojka at seznam dot cz via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109104 Bug ID: 109104 Summary: [13 Regression] ICE: in gen_reg_rtx, at emit-rtl.cc:1171 with -fzero-call-used-regs=all -march=rv64gv Product: gcc Version: 13.0

[Bug fortran/106945] [10/11/12/13 Regression] ICE: 'verify_gimple' failed

2023-03-11 Thread anlauf at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106945 anlauf at gcc dot gnu.org changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|

[Bug fortran/106945] [10/11/12/13 Regression] ICE: 'verify_gimple' failed

2023-03-11 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106945 --- Comment #6 from CVS Commits --- The master branch has been updated by Harald Anlauf : https://gcc.gnu.org/g:2cf5f485e0351bb1faf46196a99e524688f3966e commit r13-6605-g2cf5f485e0351bb1faf46196a99e524688f3966e Author: Harald Anlauf Date: S

[Bug target/109104] [13 Regression] ICE: in gen_reg_rtx, at emit-rtl.cc:1171 with -fzero-call-used-regs=all -march=rv64gv

2023-03-11 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109104 Andrew Pinski changed: What|Removed |Added Target Milestone|--- |13.0

[Bug web/88860] Clarify gcc online manual 6.38 Attribute Syntax

2023-03-11 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88860 --- Comment #10 from CVS Commits --- The master branch has been updated by Jeff Law : https://gcc.gnu.org/g:d9922e4bb5d8014ff3e4057442bbd6d2ed58cc36 commit r13-6607-gd9922e4bb5d8014ff3e4057442bbd6d2ed58cc36 Author: Jeff Law Date: Sat Mar 11

[Bug tree-optimization/106570] [12/13 Regression] DCE sometimes fails with depending if statements since r12-2305-g398572c1544d8b75

2023-03-11 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106570 Andrew Pinski changed: What|Removed |Added Keywords||needs-bisection Known to fail|

[Bug fortran/109105] New: Error-prone format string building in resolve.cc

2023-03-11 Thread roland.illig at gmx dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109105 Bug ID: 109105 Summary: Error-prone format string building in resolve.cc Product: gcc Version: 13.0 Status: UNCONFIRMED Keywords: translation Severity: normal

[Bug fortran/109099] Assignment in NAMELIST input does not fill in row-column order

2023-03-11 Thread anlauf at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109099 anlauf at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |WAITING Ever confirmed|0

[Bug c++/70476] C++11: Function name declared in unnamed namespace extern "C" gets exernal linkage

2023-03-11 Thread mail at maciej dot szmigiero.name via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70476 Maciej S. Szmigiero changed: What|Removed |Added CC||mail at maciej dot szmigiero.name

[Bug c++/70476] C++11: Function name declared in unnamed namespace extern "C" gets exernal linkage

2023-03-11 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70476 --- Comment #9 from Andrew Pinski --- Does these two functions the same name then? ``` namespace a { extern "C" void f(void); } namespace { extern "C" void f(void) {} } void g(void) { f(); a::f(); } ``` It seems counter intuitive that

[Bug c++/70476] C++11: Function name declared in unnamed namespace extern "C" gets exernal linkage

2023-03-11 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70476 Andrew Pinski changed: What|Removed |Added Keywords||assemble-failure --- Comment #10 from An

[Bug fortran/109099] Assignment in NAMELIST input does not fill in row-column order

2023-03-11 Thread urbanjost at comcast dot net via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109099 --- Comment #2 from urbanjost at comcast dot net --- Created attachment 54640 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=54640&action=edit interactive program for trying out NAMELIST group input This may be an "oops" after all; looks l

[Bug fortran/109099] Assignment in NAMELIST input does not fill in row-column order

2023-03-11 Thread urbanjost at comcast dot net via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109099 --- Comment #3 from urbanjost at comcast dot net --- So I think you are right and this is not standard; so instead of an error at most it would be nice to get a warning/error message indicating too many values were used or that an extension is us

[Bug c++/70476] C++11: Function name declared in unnamed namespace extern "C" gets exernal linkage

2023-03-11 Thread mail at maciej dot szmigiero.name via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70476 --- Comment #11 from Maciej S. Szmigiero --- (In reply to Andrew Pinski from comment #9) > Does these two functions the same name then? > ``` > namespace a { >extern "C" void f(void); > } > > namespace { > extern "C" void f(void) {} > } >