gcc 10.5: libsanitizer: fsanitize=leak option Issue

2024-04-29 Thread Estner, Michael via Gcc
Hello, I upgrade the gcc in my setup from 10.2 to 10.5 to the latest commit. After that I build an application with the -fsanitize=leak option. The execution of the application stops immediatly after start with the following error: CHECK failed: ../../../../src/libsanitizer/lsan/lsan_interceptors

Re: GCC testing on FreeBSD

2024-04-29 Thread Rainer Orth
Hi Lorenzo, > I totally agree with you: upstreaming patches is important! It is not > only for the upstream project itself, but for the target as well: having > patches sitting in a ports collection also requires more maintainance, > they require to be kept up to date with the upstream progresses.

Re: [RISC-V] Support for trapping math in RISC-V

2024-04-29 Thread Joseph Myers via Gcc
On Wed, 24 Apr 2024, Krishna Narayanan via Gcc wrote: > Hi all, > Is the RISC-V community planning to add support for trapping math in RISC-V > in the near future!? > This LLVM thread > https://discourse.llvm.org/t/trapping-math-for-risc-v/72168/7 suggests a > software emulation of traps, is the

Question about information from -fdump-rtl-sched2 on M1 Max

2024-04-29 Thread Lucier, Bradley J via Gcc
The question: How to interpret scheduling info with the compiler listed below. Specifically, a tight loop that was reported to be scheduled in 23 cycles (as I understand it) actually executes in a little over 2 cycles per loop, as I interpret two separate experiments. Am I misinterpreting somet

Re: Question about information from -fdump-rtl-sched2 on M1 Max

2024-04-29 Thread Lucier, Bradley J via Gcc
That should be 4 cycles per loop, sorry. > On Apr 29, 2024, at 7:24 PM, Lucier, Bradley J wrote: > > Specifically, a tight loop that was reported to be scheduled in 23 cycles (as > I understand it) actually executes in a little over 2 cycles per loop

Re: Question about information from -fdump-rtl-sched2 on M1 Max

2024-04-29 Thread Andrew Pinski via Gcc
On Mon, Apr 29, 2024 at 4:26 PM Lucier, Bradley J via Gcc wrote: > > The question: How to interpret scheduling info with the compiler listed below. > > Specifically, a tight loop that was reported to be scheduled in 23 cycles (as > I understand it) actually executes in a little over 2 cycles per

How to format code in GCC style?

2024-04-29 Thread Hanke Zhang via Gcc
Hi I'm trying to format my code in GCC style. But I don't know how to finish it. I try `indent` and `check_GNU_style.sh` in the `contrib` directory. But none of them seem to work well. So I wondered is there any official tools to do that? Thanks Hanke Zhang