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
/* (* We want to allow certain strange things that occur in pragmas, so we
1361
1362
* cannot use directly the language of expressions *) */
1362
1363
primary_attr:
1363
-
IDENT { VARIABLE (fst $1) }
1364
+
IDENT { VARIABLE (fst $1) }
1365
+
/* (* This is just so code such as __attribute(_NoReturn) is not rejected, which may arise when combining GCC noreturn attribute and including C11 stdnoreturn.h *) */
1366
+
| NORETURN { VARIABLE ("__noreturn__") }
1364
1367
/*(* The NAMED_TYPE here creates conflicts with IDENT *)*/
0 commit comments