https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101453
Andrew Pinski changed:
What|Removed |Added
URL||https://gcc.gnu.org/piperma
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101448
--- Comment #7 from Kevin Zhao ---
Hi Richard,
Thanks for your clarification. Really appreciated!
I think that should be the root cause.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94393
Alan Modra changed:
What|Removed |Added
Status|ASSIGNED|NEW
URL|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61032
Alan Modra changed:
What|Removed |Added
Assignee|amodra at gmail dot com|unassigned at gcc dot
gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101110
--- Comment #5 from Xi Ruoyao ---
(In reply to Andrew Macleod from comment #4)
> Does this still fail? When i look at a cross compiler listing I do not see
> any differences from ranger in the listing.
Should be fixed at d48320083c9a2bdf0ddac6
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101461
Richard Biener changed:
What|Removed |Added
Target Milestone|--- |12.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101462
Richard Biener changed:
What|Removed |Added
Last reconfirmed||2021-07-16
Target Milestone|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101464
--- Comment #3 from Richard Biener ---
But in the long discussion involving vzeroupper and HTM aborts in glibc memory
functions it came up that vpxor is _not_ properly clearing the upper state and
thus does _not_ remove the penalty that followin
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101466
Richard Biener changed:
What|Removed |Added
CC||rguenth at gcc dot gnu.org
--- Comment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101466
--- Comment #9 from cqwrteur ---
(In reply to Richard Biener from comment #8)
> I don't see what we can optimize for the reduced testcases.
void square(unsigned t, int *tt)
{
if (t<=0) __builtin_abort();
tt[0] = 0;
if (t<=1) __bui
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101466
--- Comment #10 from Richard Biener ---
(In reply to cqwrteur from comment #9)
> (In reply to Richard Biener from comment #8)
> > I don't see what we can optimize for the reduced testcases.
>
> void square(unsigned t, int *tt)
> {
> if (t<=
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101466
--- Comment #11 from Richard Biener ---
With some hand-waving we could generate
void square(unsigned t, int *tt)
{
if (t<=4) __builtin_abort();
tt[0] = 0;
tt[1] = 0;
tt[2] = 0;
tt[3] = 0;
tt[4] = 0;
}
but I don't see h
101 - 112 of 112 matches
Mail list logo