You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to differ from gcc's behavior if I understand its output in https://godbolt.org correctly. gcc drops _Atomic just like it drops const when it infers the type of d in the following code:
$ cat test.c
const int c = 100;
void test() {
__auto_type d = c;
d = 123;
}