How to represent a fallthrough condtion (with no else) in "Match and Simplify"?

2024-06-11 Thread Hanke Zhang via Gcc
Hi, I'm trying to study "Match and Simplify" recently, and I had this sample code: int main() { int n = 1000; int *a = malloc (sizeof(int) * n); int *b = malloc (sizeof(int) * n); int *c = malloc (sizeof(int) * n); for (int i = 0; i < n; i++) { if (a[i] & b[i]) { a[i] ^= c[i];

Re: Hosting a Mirror Site

2024-06-11 Thread Ganesh Ram via Gcc
Im not able to install Git yet.So  I withdraw my request ThanksGanesh Ram R On Tue, 11 Jun 2024 at 2:35 pm, Ganesh Ram wrote: Hi, I'm located at Bangalore, India I would like to host a Mirror gnu site. Thank youGanesh Ram R

Hosting a Mirror Site

2024-06-11 Thread Ganesh Ram via Gcc
Hi, I'm located at Bangalore, India I would like to host a Mirror gnu site. Thank youGanesh Ram R

Re: What is the purpose of these two fixincludes?

2024-06-11 Thread Andreas Schwab via Gcc
On Jun 11 2024, Florian Weimer via Gcc wrote: > I suspect that io_quotes_def and io_quotes_use in particular often get > applied spuriously. The message "Applying foo" does not mean that the header is actually changed. That only happens if you see "Fixed: foo.h". -- Andreas Schwab, SUSE Labs,

Re: What is the purpose of these two fixincludes?

2024-06-11 Thread Florian Weimer via Gcc
* Richard Biener via Gcc: > But are they still needed? Often headers already contain > alternatives for standard conforming compilers or GCC can now > deal with the contents. I suspect that io_quotes_def and io_quotes_use in particular often get applied spuriously. Thanks, Florian

Re: What is the purpose of these two fixincludes?

2024-06-11 Thread Jonathan Wakely via Gcc
On Tue, 4 Jun 2024, 21:42 FX Coudert via Gcc, wrote: > Hi, > > I am trying to reduce the number of unneeded fixincludes that are used on > darwin (because fixincluded headers make it impossible to change SDK once > the compiler is built, which is common practice in the macOS world, and > quite us

Re: What is the purpose of these two fixincludes?

2024-06-11 Thread Richard Biener via Gcc
On Mon, Jun 10, 2024 at 4:08 PM David Edelsohn via Gcc wrote: > > On Thu, Jun 6, 2024 at 6:22 AM FX Coudert via Gcc wrote: > > > Hi, > > > > > I usually just install with install-no-fixedincludes, but really this > > > should probably be a configure option and default to on. > > > > It would be g