https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89357
Andrew Pinski changed:
What|Removed |Added
CC||wilco at gcc dot gnu.org
--- Comment #4
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89357
Martin Sebor changed:
What|Removed |Added
Keywords|accepts-invalid |rejects-valid
Status|UNCONFIR
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89357
--- Comment #2 from Matthias Kretz ---
I agree. The corresponding C test case produces equivalent f0 and f1:
void g(int*);
void f0() {
__attribute__((aligned(128))) int x;
g(&x);
}
void f1() {
_Alignas(128) int x;
g(&x);
}
And I agree
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89357
Joseph S. Myers changed:
What|Removed |Added
Component|c |c++
--- Comment #1 from Joseph S. Myer