[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-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113155 --- Comment #3 from Andrew Pinski --- Can you provide the following: * How you configured/built GCC? * What command line options that you pass to GCC for building your application? I am suspecting you are not using the correct options to get

[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-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113155 Andrew Pinski changed: What|Removed |Added Status|UNCONFIRMED |WAITING Ever confirmed|0

[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-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113155 --- Comment #1 from Andrew Pinski --- I looked into the sources of libgcc, __aeabi_f2ulz is defined as __fixunssfdi which is defined in soft-fp/fixunssfdi.c and that does: ``` UDItype __fixunssfdi (SFtype a) { FP_DECL_EX; FP_DECL_S (A);

[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-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113155 Andrew Pinski changed: What|Removed |Added Severity|normal |enhancement Keywords|

[Bug libgcc/113155] New: 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-26 Thread kirdyankinsp at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113155 Bug ID: 113155 Summary: large overhead for cast float to uint64_t. Arm cortex-m4 (ARMv7E-M, fpv4-sp-d16, ieee 754). Compiler: arm-none-eabi-gcc Product: gcc

[Bug c/108896] provide "element_count" attribute to give more context to __builtin_dynamic_object_size() and -fsanitize=bounds

2023-12-26 Thread sean--- via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108896 Sean changed: What|Removed |Added CC||s...@rogue-research.com --- Comment #49 from

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

2023-12-26 Thread kallisti5 at unixzen dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113143 --- Comment #9 from Alexander von Gluck --- Doing a little research, it looks like complaints of ucontext.h have come up before multiple times: Similar issue on OpenBSD a long time ago:

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

2023-12-26 Thread kallisti5 at unixzen dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113143 --- Comment #8 from Alexander von Gluck --- Not at all a dumb question :-) I'm working through compiling libgo / gccgo on Haiku.We have our own lovely libc which tests posix compliant. Some historic consideration behind us not having

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

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

[Bug c++/113153] suboptimal error message when using reserved identifier and `enum class`

2023-12-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113153 Andrew Pinski changed: What|Removed |Added Ever confirmed|0 |1 Summary|suboptimal error

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

2023-12-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113143 --- Comment #7 from Andrew Pinski --- Let me ask a dumb question, are you porting GCC/gccgo to a libc which does not have ucontext.h ? If so what is the libc my I ask?

[Bug c++/113153] suboptimal error message when using reserved identifier

2023-12-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113153 --- Comment #2 from Andrew Pinski --- If you remove the class, GCC has a decent error message: ``` :1:11: error: expected identifier before 'register' 1 | enum register { rax, rcx, rdx, rbx }; | ^~~~ ```

[Bug c++/113153] suboptimal error message when using reserved identifier

2023-12-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113153 Andrew Pinski changed: What|Removed |Added Severity|normal |enhancement --- Comment #1 from Andrew

[Bug c++/113154] New: std::views::values not working with rvalue references to ranges

2023-12-26 Thread ivan.lazaric.gcc at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113154 Bug ID: 113154 Summary: std::views::values not working with rvalue references to ranges Product: gcc Version: 11.4.0 Status: UNCONFIRMED Severity: normal

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

2023-12-26 Thread kallisti5 at unixzen dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113143 --- Comment #6 from Alexander von Gluck --- For added clairity. Searching the upstream go sources: ``` grep -R getcontext src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go:// getcontext

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

2023-12-26 Thread kallisti5 at unixzen dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113143 --- Comment #5 from Alexander von Gluck --- > I understand that makecontext/getcontext/setcontext were removed from POSIX. > However, there is no adequate replacement. Their functionality is absolutely > required for what libgo does. No

[Bug c++/113153] New: suboptimal error message when using reserved identifier

2023-12-26 Thread michael.kenzel at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113153 Bug ID: 113153 Summary: suboptimal error message when using reserved identifier Product: gcc Version: 13.2.0 Status: UNCONFIRMED Severity: normal

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

2023-12-26 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 --- Comment #4 from kargl at gcc dot gnu.org --- Created attachment 56953 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56953=edit test program

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

2023-12-26 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 --- Comment #3 from kargl at gcc dot gnu.org --- Created attachment 56952 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56952=edit file that git cannot find Put in libgfortran/intrinsics

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

2023-12-26 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 --- Comment #2 from kargl at gcc dot gnu.org --- Created attachment 56951 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56951=edit file that git cannot find Put file in libgfortran/intrinsics

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

2023-12-26 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 --- Comment #1 from kargl at gcc dot gnu.org --- Created attachment 56950 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56950=edit new file that git cannot diff Put file in libgfortran/intrinsics.

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

2023-12-26 Thread kargl at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113152 Bug ID: 113152 Summary: Fortran 2023 half-cycle trigonometric functions Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component:

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

2023-12-26 Thread ian at airs dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113143 --- Comment #4 from Ian Lance Taylor --- I understand that makecontext/getcontext/setcontext were removed from POSIX. However, there is no adequate replacement. Their functionality is absolutely required for what libgo does. Fortunately

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

2023-12-26 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 Priority|P3 |P1 Summary|14.0 ICE: maximum

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

2023-12-26 Thread xry111 at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113148 --- Comment #4 from Xi Ruoyao --- (In reply to Xi Ruoyao from comment #3) > Patch: https://gcc.gnu.org/pipermail/gcc-patches/2023-December/641443.html I've successfully built Xwayland with patched GCC.

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

2023-12-26 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 URL||https://gcc.gnu.org/piperma

[Bug analyzer/112792] -Wanalyzer-out-of-bounds false positives seen on Linux kernel with certain unions

2023-12-26 Thread dmalcolm at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=112792 --- Comment #4 from David Malcolm --- Should be fixed on trunk by r14-6622-g5f1bed2a7af828103ca23a3546466a23e8dd2f30 Keeping open to track backporting to GCC 13.

[Bug sanitizer/113151] Need for a TBAA / strict aliasing sanitizer (TySan)

2023-12-26 Thread xry111 at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113151 Xi Ruoyao changed: What|Removed |Added Ever confirmed|0 |1 Severity|normal

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

2023-12-26 Thread xry111 at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113148 --- Comment #2 from Xi Ruoyao --- A bug in loongarch_secondary_reload is causing an infinite loop: diff --git a/gcc/config/loongarch/loongarch.cc b/gcc/config/loongarch/loongarch.cc index 5ffd06ce9be..c0a0af3dda5 100644 ---

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

2023-12-26 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 Last reconfirmed||2023-12-26 Ever confirmed|0

[Bug other/113147] Building a crosscompiler fails under MigW-W64/MSYS2 @ Windows 10

2023-12-26 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113147 --- Comment #1 from Andrew Pinski --- # Use the "pic" build of libiberty if --enable-host-shared or --enable-host-pie, # unless we are building for mingw. LIBIBERTY_PICDIR=$(if $(findstring mingw,$(target)),,pic) ifneq

[Bug c/80130] Wrong diagnostic: dereferencing type-punned pointer

2023-12-26 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80130 --- Comment #6 from Sam James --- I filed a bug for tysan: PR113151.

[Bug sanitizer/113151] New: Need for a TBAA / strict aliasing sanitizer (TySan)

2023-12-26 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113151 Bug ID: 113151 Summary: Need for a TBAA / strict aliasing sanitizer (TySan) Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug analyzer/113150] New: FAIL: c-c++-common/analyzer/fd-glibc-byte-stream-socket.c -std=c++98 (test for excess errors)

2023-12-26 Thread danglin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113150 Bug ID: 113150 Summary: FAIL: c-c++-common/analyzer/fd-glibc-byte-stream-socket.c -std=c++98 (test for excess errors) Product: gcc Version: 14.0

[Bug target/113149] Function multiversioning prefers arch=x86-64-v3 to actual processors

2023-12-26 Thread ed at catmur dot uk via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113149 --- Comment #1 from Ed Catmur --- >From b4ca8bf55100eddeaa14a52f1bc8e73fac565d83 Mon Sep 17 00:00:00 2001 From: Ed Catmur Date: Tue, 26 Dec 2023 11:46:26 -0600 Subject: [PATCH] Swap P_PROC_AVX2 with P_X86_64_V3, etc.

[Bug target/113149] New: Function multiversioning prefers arch=x86-64-v3 to actual processors

2023-12-26 Thread ed at catmur dot uk via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113149 Bug ID: 113149 Summary: Function multiversioning prefers arch=x86-64-v3 to actual processors Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal

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

2023-12-26 Thread xen0n at gentoo dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113148 Bug ID: 113148 Summary: 14.0 ICE: maximum number of generated reload insns per insn achieved Product: gcc Version: 14.0 Status: UNCONFIRMED Keywords:

[Bug libstdc++/113099] locale without RTTI uses dynamic_cast before gcc 13.2 or has ODR violation since gcc 13.2

2023-12-26 Thread andysem at mail dot ru via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113099 --- Comment #13 from andysem at mail dot ru --- (In reply to Jonathan Wakely from comment #12) > (In reply to andysem from comment #11) > > > I'm not sure what you mean by "the compiler is free to generate code that > > > takes it into

[Bug other/113147] New: Building a crosscompiler fails under MigW-W64/MSYS2 @ Windows 10

2023-12-26 Thread jdx at o2 dot pl via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113147 Bug ID: 113147 Summary: Building a crosscompiler fails under MigW-W64/MSYS2 @ Windows 10 Product: gcc Version: 14.0 Status: UNCONFIRMED Keywords: build

[Bug tree-optimization/113091] Over-estimate SLP vector-to-scalar cost for non-live pattern statement

2023-12-26 Thread fxue at os dot amperecomputing.com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113091 --- Comment #7 from Feng Xue --- > The issue here is that because the "outer" pattern consumes > patt_64 = (int) patt_63 it should have adjusted _2 = (int) _1 > stmt-to-vectorize > as being the outer pattern root stmt for all this logic to work

[Bug target/110625] [14 Regression][AArch64] Vect: SLP fails to vectorize a loop as the reduction_latency calculated by new costs is too large

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110625 --- Comment #23 from Tamar Christina --- Found the costing bug and have a patch undergoing testing. Will post tomorrow. Sorry for the delay in fixing it.

[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-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113144 Tamar Christina changed: What|Removed |Added Priority|P3 |P1 Assignee|unassigned at

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

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113136 Tamar Christina changed: What|Removed |Added Priority|P3 |P1 Ever confirmed|0

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

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113137 Tamar Christina changed: What|Removed |Added Ever confirmed|0 |1 Target Milestone|---

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

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113137 --- Comment #5 from Tamar Christina --- Simpler reproducer: int b; void a() __attribute__((__noreturn__)); void c() { char *buf; int bufsz = 64; while (b) { !bufsz ? a(), 0 : *buf++ = bufsz--; b -= 4; } } The loop has an

[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-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113144 --- Comment #3 from Tamar Christina --- loop has weird shape, peeling should have recalculated all dominators but seems to have missed one. Will fix tomorrow when back at work.

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

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113136 --- Comment #3 from Tamar Christina --- This shouldn't have vectorized as outer-loop vectorization isn't supported. In addition switch statements are not supported, but I guess the nested if confused the code doing the analysis. Will fix when

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

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113137 --- Comment #4 from Tamar Christina --- *** Bug 113135 has been marked as a duplicate of this bug. ***

[Bug tree-optimization/113139] [14 regression] ICE when building Binutils

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113139 Tamar Christina changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug tree-optimization/113135] [14 regression] ICE when building unrar (error: PHI node with wrong VUSE on edge from BB 46)

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113135 Tamar Christina changed: What|Removed |Added Resolution|--- |DUPLICATE

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

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113137 --- Comment #2 from Tamar Christina --- *** Bug 113146 has been marked as a duplicate of this bug. ***

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

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113137 --- Comment #3 from Tamar Christina --- *** Bug 113139 has been marked as a duplicate of this bug. ***

[Bug tree-optimization/113146] [14 regression] ICE when building dialog

2023-12-26 Thread tnfchris at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113146 Tamar Christina changed: What|Removed |Added Resolution|--- |DUPLICATE

[Bug tree-optimization/113146] New: [14 regression] ICE when building dialog

2023-12-26 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113146 Bug ID: 113146 Summary: [14 regression] ICE when building dialog Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component:

[Bug libstdc++/107761] Implement C++23

2023-12-26 Thread cooky.ykooc922 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107761 --- Comment #7 from Desmond Gold --- Here's an updated version of the implementation with following changes: + followed coding style of GNU (maybe not all) + added initial implementation of std::submdspan facilities (without constraints and

[Bug tree-optimization/113145] [14 regression] ICE when building mit-krb5-1.21.2

2023-12-26 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113145 --- Comment #1 from Sam James --- Created attachment 56945 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=56945=edit reduced.i

[Bug tree-optimization/113145] New: [14 regression] ICE when building mit-krb5-1.21.2

2023-12-26 Thread sjames at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113145 Bug ID: 113145 Summary: [14 regression] ICE when building mit-krb5-1.21.2 Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3

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

2023-12-26 Thread kallisti5 at unixzen dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113143 --- Comment #3 from Alexander von Gluck --- Good call out. It looks like in 2004 these functions were flagged as obsolescent though: https://pubs.opengroup.org/onlinepubs/009695399/functions/makecontext.html Here's the note on it in the linux

[Bug libstdc++/113099] locale without RTTI uses dynamic_cast before gcc 13.2 or has ODR violation since gcc 13.2

2023-12-26 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113099 --- Comment #12 from Jonathan Wakely --- (In reply to andysem from comment #11) > > I'm not sure what you mean by "the compiler is free to generate code that > > takes it into account." Takes what into account? What problem does that > >

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

2023-12-26 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113112 --- Comment #2 from GCC Commits --- The master branch has been updated by Pan Li : https://gcc.gnu.org/g:f83cfb8148bcf0876df76761a9a4545bc939667d commit r14-6836-gf83cfb8148bcf0876df76761a9a4545bc939667d Author: Juzhe-Zhong Date: Tue Dec