[Bug tree-optimization/106881] [13 Regression] ice in init_from_control_deps, at gimple-predicate-analysis.cc:1740 since r13-2500-g0a4a2667dc115ca7

2022-09-09 Thread dcb314 at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106881 --- Comment #10 from David Binderman --- Created attachment 53554 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=53554&action=edit gzipped C++ source code The attached C++ code, after Richard's fix, seems to break gcc. Flags -O1 -Wall re

[Bug c/106892] Wrong code at -O3 on x86_64-linux-gnu

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 Richard Biener changed: What|Removed |Added Last reconfirmed||2022-09-09 Ever confirmed|0

[Bug libgomp/106894] [13 regression] multiple libgomp failures after r13-2545-g9f2fca56593a2b

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106894 Richard Biener changed: What|Removed |Added Target Milestone|--- |13.0

[Bug c/106892] Wrong code at -O3 on x86_64-linux-gnu

2022-09-09 Thread shaohua.li at inf dot ethz.ch via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 --- Comment #3 from Li Shaohua --- Yes, I reduced it too much. Here is the new one with return value in g() function. a, b, c, d, e; f[8]; g() { while (a) a >>= 4; return 0; } h(i) { if (i >= '0') return i - '0'; } j(i) { b = 2;

[Bug c/106892] Wrong code at -O3 on x86_64-linux-gnu

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 Richard Biener changed: What|Removed |Added Status|WAITING |NEW CC|

[Bug c/106892] Wrong code at -O3 on x86_64-linux-gnu

2022-09-09 Thread marxin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 --- Comment #5 from Martin Liška --- Clean up test-case: $ cat pr106892.c int a, b, c, d, e; int f[8]; int g() { while (a) a >>= 4; return 0; } int h(int i) { if (i >= '0') return i - '0'; } void j(int i) { b = 2; for (; g(

[Bug c/106892] Wrong code at -O3 on x86_64-linux-gnu

2022-09-09 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 --- Comment #6 from Jakub Jelinek --- I would clean it even more: int a, b, c, d, e; int f[8]; int g() { while (a) a >>= 4; return 0; } int h(int i) { if (i >= '0') return i - '0'; //__builtin_unreachable (); } void j(int i) {

[Bug tree-optimization/106881] [13 Regression] ice in init_from_control_deps, at gimple-predicate-analysis.cc:1740 since r13-2500-g0a4a2667dc115ca7

2022-09-09 Thread marxin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106881 Martin Liška changed: What|Removed |Added Resolution|FIXED |--- Status|RESOLVED

[Bug c/106892] [11/12/13 Regression] Wrong code at -O3 on x86_64-linux-gnu since r11-963-g80d6f89e78fc3b77

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 --- Comment #7 from Richard Biener --- So the inline just has the return undefined in the unreachable path. We can make the inlined functions static (cleans up post-IPA dumps) and disable IPA for j: int a, b, c, d, e; int f[8]; static int g()

[Bug middle-end/106892] [11/12/13 Regression] Wrong code at -O3 on x86_64-linux-gnu since r11-963-g80d6f89e78fc3b77

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 Richard Biener changed: What|Removed |Added Component|c |middle-end Target Milestone|---

[Bug tree-optimization/106881] [13 Regression] ice in init_from_control_deps, at gimple-predicate-analysis.cc:1740 since r13-2500-g0a4a2667dc115ca7

2022-09-09 Thread rguenther at suse dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106881 --- Comment #12 from rguenther at suse dot de --- On Fri, 9 Sep 2022, marxin at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106881 > > Martin Li?ka changed: > >What|Removed |Added

[Bug middle-end/106892] [11/12/13 Regression] Wrong code at -O3 on x86_64-linux-gnu since r11-963-g80d6f89e78fc3b77

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 Richard Biener changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |rguenth at gcc dot gnu.org

[Bug middle-end/106892] [11/12/13 Regression] Wrong code at -O3 on x86_64-linux-gnu since r11-963-g80d6f89e78fc3b77

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 --- Comment #9 from Richard Biener --- So the reason is that we have # RANGE [-2147483643, 2] _137 = 4 - prephitmp_80; f[_137] = _139; which makes us conclude the f[_137] access is constrained to f[0..2]. When we see _75 = MEM[(int *)

[Bug c++/106652] [C++23] P1467 - Extended floating-point types and standard names

2022-09-09 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106652 Jakub Jelinek changed: What|Removed |Added Attachment #53508|0 |1 is obsolete|

[Bug tree-optimization/106881] [13 Regression] ice in init_from_control_deps, at gimple-predicate-analysis.cc:1740 since r13-2500-g0a4a2667dc115ca7

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106881 --- Comment #13 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:923da63e0f69b091014df5cc91498756053b1a46 commit r13-2557-g923da63e0f69b091014df5cc91498756053b1a46 Author: Richard Biener Date:

[Bug tree-optimization/106881] [13 Regression] ice in init_from_control_deps, at gimple-predicate-analysis.cc:1740 since r13-2500-g0a4a2667dc115ca7

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106881 Richard Biener changed: What|Removed |Added Resolution|--- |FIXED Status|REOPENED

[Bug tree-optimization/106809] [12 regression] large bison grammars compilation got a lot slower, mainly due to -Wuninitialized

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106809 --- Comment #11 from CVS Commits --- The releases/gcc-12 branch has been updated by Richard Biener : https://gcc.gnu.org/g:e08dd36f90e74cd5be615b1ca82a38896434d48c commit r12-8751-ge08dd36f90e74cd5be615b1ca82a38896434d48c Author: Richard Biene

[Bug tree-optimization/106860] [12 Regression] ICE in single_pred_edge, at basic-block.h:347

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106860 --- Comment #4 from CVS Commits --- The releases/gcc-12 branch has been updated by Richard Biener : https://gcc.gnu.org/g:4ce316ca54c863cf0fd4257ba0ab768ab83c62e5 commit r12-8753-g4ce316ca54c863cf0fd4257ba0ab768ab83c62e5 Author: Richard Biener

[Bug c++/106841] [12 Regression] ICE in vect_get_vec_defs_for_operand, at tree-vect-stmts.cc:1509 since r12-2733-g31855ba6b16cd138

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106841 --- Comment #7 from CVS Commits --- The releases/gcc-12 branch has been updated by Richard Biener : https://gcc.gnu.org/g:41b4faa130a32b37debb1f92e3fa93b2fe8571fc commit r12-8752-g41b4faa130a32b37debb1f92e3fa93b2fe8571fc Author: Richard Biener

[Bug tree-optimization/106809] [12 regression] large bison grammars compilation got a lot slower, mainly due to -Wuninitialized

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106809 Richard Biener changed: What|Removed |Added Known to fail||12.2.0 Status|ASSIGNED

[Bug c++/106841] [12 Regression] ICE in vect_get_vec_defs_for_operand, at tree-vect-stmts.cc:1509 since r12-2733-g31855ba6b16cd138

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106841 Richard Biener changed: What|Removed |Added Status|ASSIGNED|RESOLVED Known to work|

[Bug tree-optimization/106860] [12 Regression] ICE in single_pred_edge, at basic-block.h:347

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106860 Richard Biener changed: What|Removed |Added Known to work||12.2.1 Resolution|---

[Bug middle-end/106892] [11/12/13 Regression] Wrong code at -O3 on x86_64-linux-gnu since r11-963-g80d6f89e78fc3b77

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 --- Comment #10 from Richard Biener --- So it's aready dataref analysis that tears apart the constant offset for dr.innermost, here as DR_BASE_ADDRESS &f DR_OFFSET (ssizetype) ((sizetype) prephitmp_80 * 18446744073709551612) DR_INIT 16 but ref

[Bug target/55522] -funsafe-math-optimizations is unexpectedly harmful, especially w/ -shared

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55522 Richard Biener changed: What|Removed |Added CC||rguenth at gcc dot gnu.org --- Comment

[Bug c++/106893] [12/13 Regression] auto deduces wrong type for function pointer

2022-09-09 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106893 Jonathan Wakely changed: What|Removed |Added CC||jason at gcc dot gnu.org --- Comment

[Bug target/55522] -funsafe-math-optimizations is unexpectedly harmful, especially w/ -shared

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55522 Richard Biener changed: What|Removed |Added Target|x86_64-*-*, i?86-*-*|x86_64-*-*, i?86-*-*,

[Bug c/106895] New: powerpc64 strange extended inline asm behaviour with register pairs

2022-09-09 Thread npiggin at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106895 Bug ID: 106895 Summary: powerpc64 strange extended inline asm behaviour with register pairs Product: gcc Version: 12.2.0 Status: UNCONFIRMED Severity: normal

[Bug libgomp/106894] [13 regression] multiple libgomp failures after r13-2545-g9f2fca56593a2b

2022-09-09 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106894 Jakub Jelinek changed: What|Removed |Added Ever confirmed|0 |1 Last reconfirmed|

[Bug c/106895] powerpc64 strange extended inline asm behaviour with register pairs

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106895 --- Comment #1 from Richard Biener --- I'm quite sure that 'r' is the wrong constraint letter here.

[Bug libgomp/106894] [13 regression] multiple libgomp failures after r13-2545-g9f2fca56593a2b

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106894 --- Comment #2 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:26a1f4fcb264d110708483815c8c8d7bb4ff6788 commit r13-2559-g26a1f4fcb264d110708483815c8c8d7bb4ff6788 Author: Jakub Jelinek Date: F

[Bug libgomp/106894] [13 regression] multiple libgomp failures after r13-2545-g9f2fca56593a2b

2022-09-09 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106894 Jakub Jelinek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug target/106895] powerpc64 strange extended inline asm behaviour with register pairs

2022-09-09 Thread bergner at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106895 Peter Bergner changed: What|Removed |Added CC||bergner at gcc dot gnu.org,

[Bug tree-optimization/106722] bogus uninit warning in tree-vect-loop-manip.cc

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106722 --- Comment #7 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:a8b0b13da7379feb31950a9d2ad74b98a29c547f commit r13-2560-ga8b0b13da7379feb31950a9d2ad74b98a29c547f Author: Richard Biener Date:

[Bug middle-end/106892] [11/12/13 Regression] Wrong code at -O3 on x86_64-linux-gnu since r11-963-g80d6f89e78fc3b77

2022-09-09 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106892 --- Comment #11 from Richard Biener --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:a8b0b13da7379feb31950a9d2ad74b98a29c547f commit r13-2560-ga8b0b13da7379feb31950a9d2ad74b98a29c547f Author: Richard Biener Dat

[Bug libgomp/106894] [13 regression] multiple libgomp failures after r13-2545-g9f2fca56593a2b

2022-09-09 Thread marcel at codesourcery dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106894 --- Comment #4 from Marcel Vollweiler --- Thanks Jakub! Although I checked for regressions, unfortunately I haven't seen this regression due to the dg-set-target-env-var topic. I assume that the icv-6.c test FAIL is caused by some other issue

[Bug c++/106880] [12/13 Regression] "error: use of deleted function" printed twice

2022-09-09 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106880 Patrick Palka changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |ppalka at gcc dot gnu.org

[Bug middle-end/106833] Miss to handle OPAQUE_TYPE specially in verify_type

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106833 --- Comment #13 from CVS Commits --- The master branch has been updated by Kewen Lin : https://gcc.gnu.org/g:e230f11e9784eefed316df7dbc5df6ac999841b2 commit r13-2562-ge230f11e9784eefed316df7dbc5df6ac999841b2 Author: Kewen Lin Date: Fri Sep

[Bug tree-optimization/106896] New: [13 Regression] ICE in to_sreal_scale, at profile-count.cc:339

2022-09-09 Thread asolokha at gmx dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106896 Bug ID: 106896 Summary: [13 Regression] ICE in to_sreal_scale, at profile-count.cc:339 Product: gcc Version: 13.0 Status: UNCONFIRMED Keywords: ice-on-valid-co

[Bug libgomp/106894] [13 regression] multiple libgomp failures after r13-2545-g9f2fca56593a2b

2022-09-09 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106894 --- Comment #5 from Jakub Jelinek --- Ah, sorry about icv-6.c, I did debug just one of the testcases and after fixing it tested all the mentioned tests and all passed, so thought it is fixed. I can now reproduce it though. The thing is, make che

[Bug libgomp/106894] [13 regression] multiple libgomp failures after r13-2545-g9f2fca56593a2b

2022-09-09 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106894 Jakub Jelinek changed: What|Removed |Added Resolution|FIXED |--- Status|RESOLVED

[Bug c++/106652] [C++23] P1467 - Extended floating-point types and standard names

2022-09-09 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106652 Jakub Jelinek changed: What|Removed |Added Attachment #53555|0 |1 is obsolete|

[Bug libstdc++/106766] zip_view::_Iterator/_Sentinel's operator- use make_unsigned_t

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106766 --- Comment #1 from CVS Commits --- The master branch has been updated by Patrick Palka : https://gcc.gnu.org/g:718a6d475b3d17759618c68331c85f55c58ec9a3 commit r13-2567-g718a6d475b3d17759618c68331c85f55c58ec9a3 Author: Patrick Palka Date: F

[Bug libstdc++/106798] adjacent_view::_Iterator(_Iterator) requires random_access_iterator

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106798 --- Comment #3 from CVS Commits --- The master branch has been updated by Patrick Palka : https://gcc.gnu.org/g:e469506b7fdd1bf2c958ca3140573a474fcba3b8 commit r13-2568-ge469506b7fdd1bf2c958ca3140573a474fcba3b8 Author: Patrick Palka Date: F

[Bug libstdc++/106803] views::adjacent_transform should not return views::empty> when N == 0

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106803 --- Comment #3 from CVS Commits --- The master branch has been updated by Patrick Palka : https://gcc.gnu.org/g:8298427f6b546cabb853edd45c009cd1967b9d38 commit r13-2569-g8298427f6b546cabb853edd45c009cd1967b9d38 Author: Patrick Palka Date: F

[Bug libstdc++/106766] zip_view::_Iterator/_Sentinel's operator- use make_unsigned_t

2022-09-09 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106766 Patrick Palka changed: What|Removed |Added Target Milestone|--- |13.0 Status|NEW

[Bug libstdc++/106798] adjacent_view::_Iterator(_Iterator) requires random_access_iterator

2022-09-09 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106798 Patrick Palka changed: What|Removed |Added Resolution|--- |FIXED Assignee|unassigned at

[Bug libstdc++/106803] views::adjacent_transform should not return views::empty> when N == 0

2022-09-09 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106803 Patrick Palka changed: What|Removed |Added Target Milestone|--- |13.0 Status|NEW

[Bug analyzer/98247] RFE: detect Flexible Array Member misuse in analyzer

2022-09-09 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98247 --- Comment #4 from CVS Commits --- The master branch has been updated by David Malcolm : https://gcc.gnu.org/g:084dc9a0c6cec14596093ad077fc3e25c6b99bc3 commit r13-2571-g084dc9a0c6cec14596093ad077fc3e25c6b99bc3 Author: David Malcolm Date: Fr

[Bug analyzer/98247] Analyzer fails to detect certain out-of-bounds uses of flexible array members

2022-09-09 Thread dmalcolm at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98247 David Malcolm changed: What|Removed |Added Ever confirmed|0 |1 Summary|RFE: detect Flexibl

[Bug c++/106801] ICE: in get, at cp/constraint.cc:2621

2022-09-09 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106801 Patrick Palka changed: What|Removed |Added CC||ppalka at gcc dot gnu.org Resol

[Bug c++/100288] [11/12/13 Regression] g++-11 internal error and fails to precompile a concept

2022-09-09 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100288 Patrick Palka changed: What|Removed |Added CC||hewillk at gmail dot com --- Comment #1

[Bug driver/106897] New: driver: support -gz=zstd

2022-09-09 Thread i at maskray dot me via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106897 Bug ID: 106897 Summary: driver: support -gz=zstd Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: driver Ass

[Bug driver/106897] driver: support -gz=zstd

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106897 --- Comment #1 from Andrew Pinski --- Hmm, does gcc already support translating -gz ?

[Bug driver/106897] driver: support -gz=zstd

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106897 --- Comment #2 from Andrew Pinski --- (In reply to Andrew Pinski from comment #1) > Hmm, does gcc already support translating -gz ? The answer to my own question is yes. Adding zstd should be a simple patch I suspect.

[Bug driver/106897] driver: support -gz=zstd

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106897 --- Comment #3 from Andrew Pinski --- The hardest part is the configure change I think gcc_GAS_CHECK_FEATURE([compressed debug sections],

[Bug c++/106898] New: ECF_NOTHROW for __cxa_deleted_virtual or not for __cxa_pure_virtual

2022-09-09 Thread aoliva at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106898 Bug ID: 106898 Summary: ECF_NOTHROW for __cxa_deleted_virtual or not for __cxa_pure_virtual Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal

[Bug other/106899] New: Snapshots do not contain pre-generated man pages & info pages

2022-09-09 Thread sam at gentoo dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106899 Bug ID: 106899 Summary: Snapshots do not contain pre-generated man pages & info pages Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal

[Bug other/106899] Snapshots do not contain pre-generated man pages & info pages

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106899 --- Comment #1 from Andrew Pinski --- Right this is done on purpose as snapshots are just snapshots of the sources directly from the git.

[Bug other/106899] Snapshots do not contain pre-generated man pages & info pages

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106899 --- Comment #2 from Andrew Pinski --- "Public releases and weekly snapshots of the development sources are also available via HTTPS." "Necessary to build GCC documentation during development because the generated output files are not included i

[Bug driver/106897] driver: support -gz=zstd

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106897 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |NEW Severity|normal

[Bug other/106899] Snapshots do not contain pre-generated man pages & info pages

2022-09-09 Thread sam at gentoo dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106899 --- Comment #3 from Sam James --- Yeah, I understand it's not an error per se, just wondering if it could be considered to add them. It looks like they're generated from the same script used for releases: maintainer-scripts/gcc_release (as it h

[Bug libstdc++/106803] views::adjacent_transform should not return views::empty> when N == 0

2022-09-09 Thread hewillk at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106803 --- Comment #5 from 康桓瑋 --- (In reply to Patrick Palka from comment #4) > Fixed, thanks very much for the bug reports. Hey Patrick, thanks for the prompt fix. However, I think there may be some issues with this fix, consider: struct F {

[Bug other/106899] Snapshots do not contain pre-generated man pages & info pages

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106899 --- Comment #4 from Andrew Pinski --- So the issue is when we do a release, do a full build of GCC. Doing a snapshot does NOT do the full build because of resource constraints. We have at least any one time, 4 snapshots happening during the week

[Bug tree-optimization/106900] New: Regression after memchr optimization

2022-09-09 Thread jbglaw--- via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106900 Bug ID: 106900 Summary: Regression after memchr optimization Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-opt

[Bug tree-optimization/106900] Regression after memchr optimization

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106900 Andrew Pinski changed: What|Removed |Added Keywords||diagnostic --- Comment #1 from Andrew P

[Bug tree-optimization/106900] Regression after memchr optimization

2022-09-09 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106900 --- Comment #2 from Andrew Pinski --- Obviously this only happens because you use --enable-werror-always