On 17/10/2024 16:51, Richard Sandiford wrote:
> Ramana Radhakrishnan via Gcc writes:
> > I am pleased to announce that the GCC Steering Committee has appointed
> > Alex Coplan as a maintainer for the AArch64 load / store pair fusion
> > pass.
> >
> > In addition the steering committee has also app
Hi,
I've been looking at GCC's profile information recently. I noticed that the
probabilities/counts effectively encode the expected niters of a loop, so e.g.
with the following testcase:
$ cat t.c
int *a;
void f() {
for (int i = 0; i < N; i++)
a[i] = i;
}
$ ./xgcc -B . -c -S -o /dev/null