[Bug target/113155] large overhead for cast float to uint64_t. Arm cortex-m4 (ARMv7E-M, fpv4-sp-d16, ieee 754). Compiler: arm-none-eabi-gcc

2023-12-27 Thread kirdyankinsp at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113155 --- Comment #6 from Sergey Kirdyankin --- bin>arm-none-eabi-gcc -v Using built-in specs. COLLECT_GCC=arm-none-eabi-gcc COLLECT_LTO_WRAPPER=C:/work/distributiv/arm-gnu-toolchain-13.2/bin/../libexec/gcc/arm-none-eabi/13.2.1/lto-wrapper.exe Target:

[Bug target/113155] large overhead for cast float to uint64_t. Arm cortex-m4 (ARMv7E-M, fpv4-sp-d16, ieee 754). Compiler: arm-none-eabi-gcc

2023-12-27 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113155 --- Comment #5 from Andrew Pinski --- Again how did you configure gcc because that changes which libgcc is being used and with what options? Also I suspect you should just be using -march=armv7e-m+fp instead. Provide the output of: `arm-none-

[Bug libstdc++/113160] Const valarray (g)slice and indirect_array fail to match valarray in template functions

2023-12-27 Thread yihuajack at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113160 --- Comment #2 from Yihua Liu --- It seems that llvm member considers it a bug, see llvm-project Issue #76450.

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #16 from Tamar Christina --- > > I wonder whether ARM SVE can also use this approach VEC_EXTRACT with index = > 0. Perhaps, I'll look into it thanks. though this is ofcourse only applicable when the mask comes from whilelo. In the

[Bug target/113155] large overhead for cast float to uint64_t. Arm cortex-m4 (ARMv7E-M, fpv4-sp-d16, ieee 754). Compiler: arm-none-eabi-gcc

2023-12-27 Thread kirdyankinsp at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113155 --- Comment #4 from Sergey Kirdyankin --- Compiler command line (platform configure): arm-none-eabi-gcc -march=armv7e-m -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mthumb ... Disassembler: 080016c0 <__aeabi_f2ulz>: 80016c0: b5d0

[Bug libstdc++/113160] Const valarray (g)slice and indirect_array fail to match valarray in template functions

2023-12-27 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113160 --- Comment #1 from Andrew Pinski --- This is also fails with clang and libc++.

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #15 from Tamar Christina --- (In reply to JuzheZhong from comment #14) > > > > sure, but you can't use BIT_FIELD_REF on VLA vectors. > > > > > > So, for length partial vector. We can use VEC_EXTRACT with index = 0 since > > > VEC_EX

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #14 from JuzheZhong --- (In reply to Tamar Christina from comment #13) > (In reply to JuzheZhong from comment #12) > > (In reply to Tamar Christina from comment #11) > > > (In reply to JuzheZhong from comment #10) > > > > (In reply t

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #13 from Tamar Christina --- (In reply to JuzheZhong from comment #12) > (In reply to Tamar Christina from comment #11) > > (In reply to JuzheZhong from comment #10) > > > (In reply to Tamar Christina from comment #9) > > > > (In rep

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #12 from JuzheZhong --- (In reply to Tamar Christina from comment #11) > (In reply to JuzheZhong from comment #10) > > (In reply to Tamar Christina from comment #9) > > > (In reply to JuzheZhong from comment #8) > > > > Suppose the l

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #11 from Tamar Christina --- (In reply to JuzheZhong from comment #10) > (In reply to Tamar Christina from comment #9) > > (In reply to JuzheZhong from comment #8) > > > Suppose the loop mask is generated by whilelo instruction of AR

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #10 from JuzheZhong --- (In reply to Tamar Christina from comment #9) > (In reply to JuzheZhong from comment #8) > > Suppose the loop mask is generated by whilelo instruction of ARM SVE. > > > > Suppose we have 8 elements in a singl

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #9 from Tamar Christina --- (In reply to JuzheZhong from comment #8) > Suppose the loop mask is generated by whilelo instruction of ARM SVE. > > Suppose we have 8 elements in a single whole vector. > > mask = whilo (0, res) if res

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #8 from JuzheZhong --- (In reply to Tamar Christina from comment #7) > You may be able to use the same approach as > > else if (LOOP_VINFO_FULLY_MASKED_P (loop_vinfo)) > > that is, reverse both the mask and the vector and using e

[Bug libstdc++/113160] New: Const valarray (g)slice and indirect_array fail to match valarray in template functions

2023-12-27 Thread yihuajack at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113160 Bug ID: 113160 Summary: Const valarray (g)slice and indirect_array fail to match valarray in template functions Product: gcc Version: 13.2.0 Status: UNCONFIRMED

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #7 from Tamar Christina --- You may be able to use the same approach as else if (LOOP_VINFO_FULLY_MASKED_P (loop_vinfo)) that is, reverse both the mask and the vector and using extract last. It's not going to be performance criti

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #6 from Tamar Christina --- (In reply to JuzheZhong from comment #5) > (In reply to Tamar Christina from comment #4) > > (In reply to JuzheZhong from comment #3) > > > I guess this code is just disabling partial vector for length for

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #5 from JuzheZhong --- (In reply to Tamar Christina from comment #4) > (In reply to JuzheZhong from comment #3) > > I guess this code is just disabling partial vector for length for now. > > > > And need me to test and port this par

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #4 from Tamar Christina --- (In reply to JuzheZhong from comment #3) > I guess this code is just disabling partial vector for length for now. > > And need me to test and port this part for length in the followup patches. > > Am I r

[Bug target/81456] [11/12/13/14 Regression] x86-64 optimizer makes wrong decision when optimizing for size

2023-12-27 Thread lh_mouse at 126 dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81456 LIU Hao changed: What|Removed |Added CC||lh_mouse at 126 dot com --- Comment #12 from L

[Bug c/113134] gcc does not version loops with early break conditions that don't have side-effects

2023-12-27 Thread juzhe.zhong at rivai dot ai via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 --- Comment #3 from JuzheZhong --- Thanks Tamar. And I agree with you. This is not supposed to let early break to handle that. It should be optimization on scalar IR instead of loop vectorizer. I believe it is GCC-15 topic. Btw, I am trying t

[Bug libstdc++/113159] More robust std::sort for silly comparator functions

2023-12-27 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113159 Jonathan Wakely changed: What|Removed |Added Severity|normal |enhancement

[Bug libstdc++/113154] [11 only] std::views::values not working with rvalue references to ranges

2023-12-27 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113154 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug fortran/113152] Fortran 2023 half-cycle trigonometric functions

2023-12-27 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 kargl at gcc dot gnu.org changed: What|Removed |Added Priority|P3 |P4

[Bug fortran/113152] Fortran 2023 half-cycle trigonometric functions

2023-12-27 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 --- Comment #8 from kargl at gcc dot gnu.org --- Created attachment 56956 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56956&action=edit git diff cannot find trigpi.c (updated file) The new file tries to deal with a system with REAL(4),

[Bug fortran/113152] Fortran 2023 half-cycle trigonometric functions

2023-12-27 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 --- Comment #7 from kargl at gcc dot gnu.org --- Created attachment 56955 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56955&action=edit test program for inverse functions The attach program tests the inverse functions, e.g., acospi, for

[Bug go/113143] Remove usage of ucontext.h

2023-12-27 Thread ian at airs dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113143 --- Comment #10 from Ian Lance Taylor --- The makecontext/getcontext/setcontext functions are called by libgo on GNU/Linux for all targets other than x86_64. It is not the case that they are used only on *BSD systems. The default gc implementa

[Bug libstdc++/113159] New: More robust std::sort for silly comparator functions

2023-12-27 Thread jengelh at inai dot de via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113159 Bug ID: 113159 Summary: More robust std::sort for silly comparator functions Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Compon

[Bug target/110934] m68k: ICE with -fzero-call-used-regs=all compiling openssh 9.3p2

2023-12-27 Thread mikpelinux at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110934 --- Comment #6 from Mikael Pettersson --- Affects gcc-11 and newer, gcc-10 and older are ok. Started with: d10f3e900b0377b4760a090b0f90371bcef01686 is the first new commit commit d10f3e900b0377b4760a090b0f90371bcef01686 Author: qing zhao Date:

[Bug tree-optimization/113137] [14 regression] Failed bootstrap with -O3 -march=znver2

2023-12-27 Thread dcb314 at hotmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113137 David Binderman changed: What|Removed |Added CC||dcb314 at hotmail dot com --- Comment

[Bug c++/113158] [11/12/13/14 Regression] Erroneous "looser exception specification" error for class template and depedent noexcept value

2023-12-27 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113158 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever confirmed|0

[Bug c++/99980] Delayed parsing of noexcept doesn't work in member function template

2023-12-27 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99980 Andrew Pinski changed: What|Removed |Added Target Milestone|--- |12.0

[Bug c++/113158] [11/12/13/14 Regression] Erroneous "looser exception specification" error for class template

2023-12-27 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113158 Andrew Pinski changed: What|Removed |Added Summary|Erroneous "looser exception |[11/12/13/14 Regression]

[Bug fortran/97592] [11/12/13/14 Regression] Incorrectly set pointer remapping with array pointer argument to CONTIGUOUS dummy

2023-12-27 Thread anlauf at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97592 anlauf at gcc dot gnu.org changed: What|Removed |Added Resolution|--- |FIXED Target Milestone|11.5

[Bug fortran/97592] [11/12/13/14 Regression] Incorrectly set pointer remapping with array pointer argument to CONTIGUOUS dummy

2023-12-27 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97592 --- Comment #9 from GCC Commits --- The releases/gcc-13 branch has been updated by Harald Anlauf : https://gcc.gnu.org/g:019abe7aa98feae1514c0e51c51fe424e28e2c21 commit r13-8181-g019abe7aa98feae1514c0e51c51fe424e28e2c21 Author: Harald Anlauf D

[Bug fortran/113152] Fortran 2023 half-cycle trigonometric functions

2023-12-27 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 --- Comment #6 from kargl at gcc dot gnu.org --- In reflecting on the possibility of an OS lacking support for REAL(10) but having a REAL(16), the mapping of types into C are likely REAL(4) <--> float, REAL(8) <--> double, and REAL(16) <--> long

[Bug c++/113158] New: Erroneous "looser exception specification" error for class template

2023-12-27 Thread sim.f.nilsson at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113158 Bug ID: 113158 Summary: Erroneous "looser exception specification" error for class template Product: gcc Version: 13.2.0 Status: UNCONFIRMED Severity: normal

[Bug c++/113124] g++ should relax designated initialiser rules for trivial classes (read: C structures) and C arrays.

2023-12-27 Thread adobriyan at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113124 --- Comment #5 from Alexey Dobriyan --- My standardspeak is very bad. I think std::is_trivial_v types should have relaxed initialisation ordering, because all C structs and unions are std::is_trivial_v. If I understand this stuff correctly, or

[Bug gcov-profile/113157] New: compilation error in PGO

2023-12-27 Thread jiahaoxiang.hust at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113157 Bug ID: 113157 Summary: compilation error in PGO Product: gcc Version: 11.4.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: gcov-profile

[Bug c/113134] gcc does not version loops with side-effect early breaks

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113134 Tamar Christina changed: What|Removed |Added Last reconfirmed|2023-12-25 00:00:00 |2023-12-27 Summary|Middle

[Bug tree-optimization/113136] [14 regression] ICE when building Perl

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113136 --- Comment #8 from Tamar Christina --- Thanks, was able to reproduce with `--enable-checking=yes,rtl,extra`. The issue seems to be that the value is unused, and we were relying on DSE removing such statement. but with --enable-checking=yes,rtl

[Bug rtl-optimization/104914] [MIPS] wrong comparison with scrabbled int value

2023-12-27 Thread syq at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104914 --- Comment #23 from YunQiang Su --- I guess, we should drop TRULY_NOOP_TRUNCATION_MODES_P and TARGET_MODE_REP_EXTENDED for MIPS. In fact, it will only effect MIPS64 SI->DI. Then it may reduce the maintain workload for MIPS64. Let's have a try

[Bug tree-optimization/113136] [14 regression] ICE when building Perl

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113136 --- Comment #7 from Tamar Christina --- (In reply to Sam James from comment #6) > Can you try with --enable-checking=yes,rtl,extra? I can reproduce this on > godbolt too: https://godbolt.org/z/56r9ejMn5. trying with that.. from the dump on godb

[Bug tree-optimization/113136] [14 regression] ICE when building Perl

2023-12-27 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113136 --- Comment #6 from Sam James --- Can you try with --enable-checking=yes,rtl,extra? I can reproduce this on godbolt too: https://godbolt.org/z/56r9ejMn5.

[Bug testsuite/113085] New test case libgomp.c/alloc-pinned-1.c from r14-6499-g348874f0baac0f fails

2023-12-27 Thread ams at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113085 --- Comment #4 from Andrew Stubbs --- It's going to be difficult to make this test work when only one page of locked memory is available. :-( I will look at making it "unsupported".

[Bug c++/113129] "using declaration" not detected as "exported" in exported namespace (C++ modules)

2023-12-27 Thread pilarlatiesa at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113129 Pilar Latiesa changed: What|Removed |Added CC||pilarlatiesa at gmail dot com --- Comme

[Bug tree-optimization/113137] [14 regression] Failed bootstrap with -O3 -march=znver2

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113137 --- Comment #7 from Tamar Christina --- Have update the memory analysis part to support inverted loops. now working on wiring through virtual phis during peeling. Aside form this missing part CFG looks correct. will have a final patch in a bit

[Bug tree-optimization/113136] [14 regression] ICE when building Perl

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
install --enable-checking=release --enable-languages=c,c++,fortran,lto,objc --no-create --no-recursion Thread model: posix Supported LTO compression algorithms: zlib zstd gcc version 14.0.0 20231227 (experimental) (GCC)

[Bug tree-optimization/113144] [14 regression] ICE when building dpkg-1.21.15 in verify_dominators (error: dominator of 9 should be 48, not 12)

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113144 --- Comment #6 from Tamar Christina --- Created attachment 56954 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56954&action=edit candidate-patch1.patch

[Bug tree-optimization/113144] [14 regression] ICE when building dpkg-1.21.15 in verify_dominators (error: dominator of 9 should be 48, not 12)

2023-12-27 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113144 --- Comment #5 from Tamar Christina --- Loop seems to have been peeled and versioned, and has very convoluted sequence of merge blocks for the exits. I initially thought it would be enough to update the immediate reachable blocks from the new e

[Bug target/113033] GCC 14 (20231203 snapshot) ICE when building LSX vector rotate code on LoongArch

2023-12-27 Thread xry111 at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113033 --- Comment #12 from Xi Ruoyao --- Missed-optimization fixed at r14-6851.

[Bug target/113148] [14 Regression] ICE: maximum number of generated reload insns per insn achieved

2023-12-27 Thread xry111 at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113148 Xi Ruoyao changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug target/113148] [14 Regression] ICE: maximum number of generated reload insns per insn achieved

2023-12-27 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113148 --- Comment #5 from GCC Commits --- The master branch has been updated by Xi Ruoyao : https://gcc.gnu.org/g:f19ceb2d49afdfa527d2109476a3f1d383c47e1b commit r14-6852-gf19ceb2d49afdfa527d2109476a3f1d383c47e1b Author: Xi Ruoyao Date: Wed Dec 2

[Bug fortran/113152] Fortran 2023 half-cycle trigonometric functions

2023-12-27 Thread mikael at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 Mikael Morin changed: What|Removed |Added CC||mikael at gcc dot gnu.org --- Comment #5

[Bug target/113112] RISC-V: Dynamic LMUL feature stabilization for GCC-14 release

2023-12-27 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113112 --- Comment #3 from GCC Commits --- The master branch has been updated by Pan Li : https://gcc.gnu.org/g:c4ac073d4fc7474e29d085bbd10971138ee7478e commit r14-6850-gc4ac073d4fc7474e29d085bbd10971138ee7478e Author: Juzhe-Zhong Date: Wed Dec 27

[Bug target/113156] AVR build broken due to ICE while compiling libgcc, started with r14-6201-gf0a90c7d7333fc

2023-12-27 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113156 Andrew Pinski changed: What|Removed |Added Keywords||ice-on-valid-code See Also|

[Bug target/113156] AVR build broken due to ICE while compiling libgcc, started with r14-6201-gf0a90c7d7333fc

2023-12-27 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113156 --- Comment #1 from Andrew Pinski --- Most like __optimize__ ("-fno-tree-loop-distribute-patterns") was not working for avr before.

[Bug target/113156] New: AVR build broken due to ICE while compiling libgcc, started with r14-6201-gf0a90c7d7333fc

2023-12-27 Thread dimitar at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113156 Bug ID: 113156 Summary: AVR build broken due to ICE while compiling libgcc, started with r14-6201-gf0a90c7d7333fc Product: gcc Version: 14.0 Status: UNCONFIRMED