[Bug tree-optimization/119103] shift not demotated when shift amount range is known

2025-03-04 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119103 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #9

[Bug tree-optimization/119103] shift not demotated when shift amount range is known

2025-03-04 Thread gcc at haasn dot dev via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119103 --- Comment #12 from Niklas Haas --- Out of curiosity, is there a work-around that I could use to get current versions of GCC to compile the right thing, but without breaking cross-platform compatibility? I did try replacing the assertion by "x

[Bug tree-optimization/119103] shift not demotated when shift amount range is known

2025-03-04 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119103 --- Comment #7 from Richard Biener --- So first of all the range info on the shift is lost, so vect_recog_over_widening_pattern cannot do its work. The info is lost when PRE moves the invariant (int) amount cast out of the loop - we've dropped

[Bug c++/118874] [15 regression] ICE in copy_rtx, at rtl.cc:372

2025-03-04 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118874 --- Comment #14 from Jakub Jelinek --- So, I've tried --- gcc/coroutines.cc.jj2025-02-04 09:16:42.820267205 +0100 +++ gcc/coroutines.cc 2025-03-04 11:42:28.004682770 +0100 @@ -5183,6 +5183,15 @@ cp_coroutine_transform::build_ramp_funct

[Bug fortran/104130] [12/13 Regression] ICE in gfc_add_class_array_ref, at fortran/class.c:274 since r12-4467-g64f9623765da3306

2025-03-04 Thread vehre at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104130 Andre Vehreschild changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

[Bug fortran/104684] [12/13/14/15 Regression] [coarray] ICE: 'verify_gimple' failed (Error: non-trivial conversion in 'component_ref') since r7-5771-gde91486c745d5ff6

2025-03-04 Thread vehre at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104684 Andre Vehreschild changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |vehre at gcc dot gnu.org

[Bug target/115485] [12/13/14/15 Regression] CASEServer.cpp:203:1: internal compiler error: in require_pic_register, at config/arm/arm.c:7855 since r7-1945-gb88bd5e0ca1208

2025-03-04 Thread clyon at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115485 Christophe Lyon changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Bug target/118892] [14/15 Regression] ICE (segfault) in rebuild_jump_labels on aarch64-linux-gnu since r14-5289

2025-03-04 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118892 --- Comment #15 from GCC Commits --- The master branch has been updated by Tamar Christina : https://gcc.gnu.org/g:d883f3233c4b7e0dce52539a12df8aff43e4 commit r15-7809-gd883f3233c4b7e0dce52539a12df8aff43e4 Author: Tamar Christina Date

[Bug rtl-optimization/119071] [12/13/14/15 Regression] Miscompile at -O2 since r10-7268

2025-03-04 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119071 --- Comment #15 from GCC Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:ccf9db9a6fa4b5bc7aad5e9603e2ac71984142a0 commit r15-7805-gccf9db9a6fa4b5bc7aad5e9603e2ac71984142a0 Author: Jakub Jelinek Date:

[Bug tree-optimization/115529] Optimization with "bit mask and compare equality" ((x & C1) == C2), ((x | C3) == C4)

2025-03-04 Thread Explorer09 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115529 --- Comment #2 from Kang-Che Sung --- Since I've run into this problem again. I think it's good rephrase the issue, and provide another example code. This optimization feature request is about comparing whether a variable is in a specific range

[Bug tree-optimization/119103] shift not demotated when shift amount range is known

2025-03-04 Thread amonakov at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119103 Alexander Monakov changed: What|Removed |Added CC||amonakov at gcc dot gnu.org --- Com

[Bug analyzer/119104] Regression in memcpy(3) if [[gnu::nonnull_if_nonzero]] is used instead of [[gnu::nonnull]]; unclear docs

2025-03-04 Thread alx at kernel dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119104 --- Comment #6 from Alejandro Colomar --- (In reply to Jakub Jelinek from comment #5) > They should. It is more important not to force UB on cases where there is > no harm (i.e. runtime memcpy (NULL, NULL, 0) and similar) than to get some > ext

[Bug c++/119105] std::locale only working with C and POSIX

2025-03-04 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119105 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Depends on|

[Bug c++/118924] [12/13/14/15 regression] Wrong code at -O2 and above leading to uninitialized accesses on aarch64-linux-gnu since r10-917-g3b47da42de621c

2025-03-04 Thread rguenther at suse dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118924 --- Comment #15 from rguenther at suse dot de --- On Mon, 3 Mar 2025, jamborm at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118924 > > --- Comment #14 from Martin Jambor --- > So something like the following - which

[Bug c++/119102] GCC 15.0 'import std;' fails with Ofast (not with O3) due to some openmp internal error

2025-03-04 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119102 --- Comment #5 from Richard Biener --- (In reply to Jonathan Wakely from comment #4) > We're taking the non-OpenMP branch there, but the error from GCC seems to be > incorrectly referring to OpenMP. > > The docs for attribute simd say: > > If

[Bug tree-optimization/119103] shift not demotated when shift amount range is known

2025-03-04 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119103 --- Comment #13 from Richard Biener --- (In reply to Niklas Haas from comment #12) > Out of curiosity, is there a work-around that I could use to get current > versions of GCC to compile the right thing, but without breaking > cross-platform com

[Bug analyzer/119104] Regression in memcpy(3) if [[gnu::nonnull_if_nonzero]] is used instead of [[gnu::nonnull]]; unclear docs

2025-03-04 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119104 --- Comment #5 from Jakub Jelinek --- (In reply to Alejandro Colomar from comment #4) > (In reply to Jakub Jelinek from comment #3) > > The analyzer will be hopefully improved for GCC 16, there was just a minimal > > support added so that the an

[Bug target/119100] RISC-V: missed opportunities for vector-scalar instructions

2025-03-04 Thread parras at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119100 --- Comment #3 from Paul-Antoine Arras --- (In reply to Jeffrey A. Law from comment #2) > Paul -- have you run your patch on any design? And if so what did you run > and what was the performance delta before/after? Thanks for your input, Jeff!

[Bug middle-end/118608] [14/15 regression][mips64] Lack of sign extension with -Os/-O1 after r14-6915

2025-03-04 Thread mateuszmar2 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118608 --- Comment #3 from Mateusz Marciniec --- Thanks for the patch, I applied it onto gcc 14.2.0 and tested it on our mips64 hardware, it fixed reported regression. Additionally I ran our testsuite with patched gcc on x86_64, arm and aarch64 target

[Bug tree-optimization/119103] shift not demotated when shift amount range is known

2025-03-04 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119103 --- Comment #14 from Jakub Jelinek --- (In reply to Richard Biener from comment #10) > (In reply to Jakub Jelinek from comment #9) > > Shouldn't we optimize this in match.pd when global range says it is ok or > > during vrp/evrp using local rang

[Bug analyzer/119104] Regression in memcpy(3) if [[gnu::nonnull_if_nonzero]] is used instead of [[gnu::nonnull]]; unclear docs

2025-03-04 Thread alx at kernel dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119104 --- Comment #4 from Alejandro Colomar --- (In reply to Jakub Jelinek from comment #3) > The analyzer will be hopefully improved for GCC 16, there was just a minimal > support added so that the analyzer tests didn't regress. > The normal -Wnonnul

[Bug rtl-optimization/119071] [12/13/14/15 Regression] Miscompile at -O2 since r10-7268

2025-03-04 Thread ubizjak at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119071 Uroš Bizjak changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

[Bug modula2/118998] Rotate of a packetset causes different types to binary operator error

2025-03-04 Thread gaius at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118998 --- Comment #2 from Gaius Mulley --- Created attachment 60652 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=60652&action=edit Proposed fix (work in progress) Here is a proposed patch which fixes the rotate return type by converting both

[Bug tree-optimization/111750] [12/13/14/15 regression] Spurious -Warray-bounds warning when using member function pointers

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111750 Andrew Pinski changed: What|Removed |Added Ever confirmed|0 |1 Status|UNCONFIRMED

[Bug target/118531] [14 Regression] aarch64/ins_bitfield_1.c generates INS instructions even for +nosimd

2025-03-04 Thread rsandifo at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118531 Richard Sandiford changed: What|Removed |Added Status|ASSIGNED|RESOLVED Known to work|

[Bug target/119115] [15 regression] RISC-V: miscompile at -O3 with zvl256b -fsigned-char -fwrapv since r15-1579-g792f97b44ff

2025-03-04 Thread ewlu at rivosinc dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119115 --- Comment #4 from Edwin Lu --- (In reply to Robin Dapp from comment #3) > Ah Edwin, would you mind CC'ing on such regressions? Thanks. my bad. will do that for future regressions

[Bug c++/119061] [C++26] P2900R14 - Contracts

2025-03-04 Thread jason at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119061 Jason Merrill changed: What|Removed |Added CC||jason at gcc dot gnu.org,

[Bug target/119100] RISC-V: missed opportunities for vector-scalar instructions

2025-03-04 Thread andrew at sifive dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119100 Andrew Waterman changed: What|Removed |Added CC||andrew at sifive dot com --- Comment

[Bug c++/119119] ICE in create_tmp_var

2025-03-04 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119119 Marek Polacek changed: What|Removed |Added Ever confirmed|0 |1 Status|UNCONFIRMED

[Bug target/119120] Unnecessary fldl/stpl pair when assigning real or imaginary part of a complex variable

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119120 Andrew Pinski changed: What|Removed |Added Known to work||15.0 --- Comment #1 from Andrew Pinski

[Bug target/119120] Unnecessary fldl/stpl pair when assigning real or imaginary part of a complex variable

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119120 Andrew Pinski changed: What|Removed |Added Resolution|--- |FIXED Status|UNCONFIRMED

[Bug ipa/119119] ICE in create_tmp_var

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119119 --- Comment #2 from Andrew Pinski --- Reducing.

[Bug c++/119061] [C++26] P2900R14 - Contracts

2025-03-04 Thread ville.voutilainen at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119061 --- Comment #3 from Ville Voutilainen --- Should.. ..the version for this be 16? That's when we expect to do an upstream push.

[Bug libstdc++/71684] Memory leak with std::mutex and std::lock_guard on freebsd

2025-03-04 Thread christian.prochaska--- via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71684 Christian Prochaska changed: What|Removed |Added CC||christian.prochaska@genode-

[Bug c++/119060] [C++26] P1494R5 - Partial program correctness

2025-03-04 Thread iains at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119060 Iain Sandoe changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |iains at gcc dot gnu.org

[Bug target/119114] New: [14/15 regression] RISC-V: miscompile at -O3 since r14-4077-g86451305d8b

2025-03-04 Thread ewlu at rivosinc dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119114 Bug ID: 119114 Summary: [14/15 regression] RISC-V: miscompile at -O3 since r14-4077-g86451305d8b Product: gcc Version: 15.0 Status: UNCONFIRMED Severity: norma

[Bug target/119115] [15 regression] RISC-V: miscompile at -O3 with zvl256b -fsigned-char -fwrapv since r15-1579-g792f97b44ff

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119115 Andrew Pinski changed: What|Removed |Added Target Milestone|--- |15.0 Target|

[Bug c++/109431] [12/13/14 Regression] ICE in output_constructor_regular_field with static constexpr array inside a template constexpr function since r9-1483-g307193b82cecb8

2025-03-04 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109431 Marek Polacek changed: What|Removed |Added CC||pinskia at gcc dot gnu.org --- Comment

[Bug target/119115] [15 regression] RISC-V: miscompile at -O3 with zvl256b -fsigned-char -fwrapv since r15-1579-g792f97b44ff

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119115 Andrew Pinski changed: What|Removed |Added See Also||https://gcc.gnu.org/bugzill

[Bug target/119115] New: [15 regression] RISC-V: miscompile at -O3 with zvl256b -fsigned-char -fwrapv since r15-1579-g792f97b44ff

2025-03-04 Thread ewlu at rivosinc dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119115 Bug ID: 119115 Summary: [15 regression] RISC-V: miscompile at -O3 with zvl256b -fsigned-char -fwrapv since r15-1579-g792f97b44ff Product: gcc Version: 15.0 Status: UNCON

[Bug c++/109433] [12/13/14/15 Regression] ICE with -std=c++11 and static constexpr array inside a template constexpr

2025-03-04 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109433 Marek Polacek changed: What|Removed |Added Resolution|--- |DUPLICATE Status|NEW

[Bug c++/119116] New: std::use_facet exception message needs more details

2025-03-04 Thread programmingkidx at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119116 Bug ID: 119116 Summary: std::use_facet exception message needs more details Product: gcc Version: 14.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Compo

[Bug fortran/119074] Mismatched arguments for external dummy argument not caught

2025-03-04 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119074 --- Comment #4 from GCC Commits --- The master branch has been updated by Thomas Koenig : https://gcc.gnu.org/g:21ca9153ebe525b077ac96811cfd48be6b259e7e commit r15-7817-g21ca9153ebe525b077ac96811cfd48be6b259e7e Author: Thomas Koenig Date: T

Personalized Bags and Boxes

2025-03-04 Thread lance.mypackagingpro--- via Gcc-bugs
Hi, We make personalized packaging—tuck boxes, CBD boxes, mailer boxes, rigid boxes, bakery boxes, retail boxes, shopping bags, label stickers and more. Simply provide us with the dimensions (L x W x H), quantity, and preferred box style, and we'll provide you with a competitive quote. Plus, fo

[Bug go/119098] GO built from GCC 14 sources no longer works when installing libgo23 build from GCC 15

2025-03-04 Thread ian at airs dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119098 Ian Lance Taylor changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug c++/119059] [C++26] P3074R7 - Trivial unions

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119059 Andrew Pinski changed: What|Removed |Added See Also||https://github.com/llvm/llv

[Bug target/119115] [15 regression] RISC-V: miscompile at -O3 with zvl256b -fsigned-char -fwrapv since r15-1579-g792f97b44ff

2025-03-04 Thread rdapp at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119115 --- Comment #2 from Robin Dapp --- (In reply to Andrew Pinski from comment #1) > Could this be another one of the vsetivli failures? 100% as I get "0" with --param=vsetvl-strategy=simple. But at first sight unrelated to the previous ones. Wil

[Bug objc/119117] New: Implementation of "if declarations" makes instance variables unknown under certain conditions

2025-03-04 Thread yavor at gnu dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119117 Bug ID: 119117 Summary: Implementation of "if declarations" makes instance variables unknown under certain conditions Product: gcc Version: 15.0 Status: UNCONFIRMED

[Bug fortran/119049] Procedures are mishandled in -fc-prototypes-external

2025-03-04 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119049 --- Comment #1 from GCC Commits --- The master branch has been updated by Thomas Koenig : https://gcc.gnu.org/g:21ca9153ebe525b077ac96811cfd48be6b259e7e commit r15-7817-g21ca9153ebe525b077ac96811cfd48be6b259e7e Author: Thomas Koenig Date: T

[Bug go/119098] GO built from GCC 14 sources no longer works when installing libgo23 build from GCC 15

2025-03-04 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119098 --- Comment #4 from GCC Commits --- The master branch has been updated by Ian Lance Taylor : https://gcc.gnu.org/g:8d7762945bba3c8321b5856cee3d5e5aed55facf commit r15-7818-g8d7762945bba3c8321b5856cee3d5e5aed55facf Author: Ian Lance Taylor Dat

[Bug c++/99590] [12/13/14/15 Regression] ICE when pack expansion with lambda

2025-03-04 Thread mpolacek at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99590 --- Comment #7 from Marek Polacek --- (In reply to Andrew Pinski from comment #2) > Here is a C++17 version which crashes from 8.1+: > template > void g(T... args) { > ([args...](auto){}(args), ...); > } > > int main() { g(0, 1); } This sta

[Bug objc/119117] [15 Regression] Implementation of "if declarations" makes instance variables unknown under certain conditions

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119117 Andrew Pinski changed: What|Removed |Added Summary|Implementation of "if |[15 Regression] |decl

[Bug objc/119117] [15 Regression] Implementation of "if declarations" makes instance variables unknown under certain conditions

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119117 --- Comment #1 from Andrew Pinski --- Created attachment 60654 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=60654&action=edit Reduced further

[Bug target/119115] [15 regression] RISC-V: miscompile at -O3 with zvl256b -fsigned-char -fwrapv since r15-1579-g792f97b44ff

2025-03-04 Thread rdapp at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119115 Robin Dapp changed: What|Removed |Added Last reconfirmed||2025-3-4 --- Comment #3 from Robin Dapp -

[Bug objc/119117] [12/13/14/15 Regression] instance variables sometimes causes unknown type name

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119117 Andrew Pinski changed: What|Removed |Added Known to work|6.5.0 | Summary|[15 Regression]

[Bug fortran/119118] New: substring with negative start index

2025-03-04 Thread kargls at comcast dot net via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119118 Bug ID: 119118 Summary: substring with negative start index Product: gcc Version: 15.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran

[Bug objc/119117] [12/13/14/15 Regression] instance variables sometimes causes unknown type name

2025-03-04 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119117 --- Comment #3 from Andrew Pinski --- Or maybe it started with the patch for PR 20385.

[Bug fortran/119118] substring with negative start index

2025-03-04 Thread kargls at comcast dot net via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119118 --- Comment #2 from kargls at comcast dot net --- On 3/4/25 16:33, jvdelisle at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119118 > > Jerry DeLisle changed: > > What|Removed |Added

[Bug target/119083] Remove SSE_FIRST_REG from ix86_class_likely_spilled_p

2025-03-04 Thread liuhongt at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119083 --- Comment #10 from Hongtao Liu --- (In reply to Hongtao Liu from comment #9) > (In reply to H.J. Lu from comment #8) > > Created attachment 60647 [details] > > A patch to remove CREG and BREG from ix86_class_likely_spilled_p > > > > Hongtao,

[Bug c++/119111] [[deprecated]] attribute NOT work IF be placed between () and {}

2025-03-04 Thread terryinzaghi at 163 dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119111 --- Comment #2 from terryinzaghi --- (In reply to Jakub Jelinek from comment #1) > Why do you think this is a bug? > https://eel.is/c++draft/dcl.decl#dcl.fct-1.sentence-5 > says that the attribute-specifier-seq in your old{4,5,6,7} declarations

[Bug target/119084] LoongArch: __builtin_lsx_vldx can be incorrectly reordered

2025-03-04 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119084 --- Comment #7 from GCC Commits --- The master branch has been updated by Xi Ruoyao : https://gcc.gnu.org/g:4856292f7a680ec478e7607f1b71781996d7d542 commit r15-7821-g4856292f7a680ec478e7607f1b71781996d7d542 Author: Xi Ruoyao Date: Sun Mar 2

<    1   2