https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108510
Martin Liška changed:
What|Removed |Added
Status|WAITING |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108510
--- Comment #2 from Li Shaohua ---
Sure: (compiler explorer: https://godbolt.org/z/3qEavnan5)
% cat a.c
int a;
char b;
int *c = &a, *d;
long e;
int main() {
long *f = &e;
{
int g=0;
d = &g;
}
*d << (b = ((*f)--, c || *d));
}
%
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108510
Martin Liška changed:
What|Removed |Added
Status|UNCONFIRMED |WAITING
Last reconfirmed|