On Thu, May 04, 2017 at 09:53:50AM -0400, Lance Richardson wrote: > Thanks for the quick feedback, will incorporate in v5. I also saw a small issue, possibly related to the problem with the mixup between 'declaration-list' and 'struct-declarator-list' that you noticed. In the following code, the static assert is not recognized: void foo(void) { int i = 0; for (_Static_assert(1, "ok"); 1; ) ; for (_Static_assert(0, "ko"); 1; ) ; } It should because (since C99) the first part of the for-statement is just a 'declaration', which include the static assert. Not that it's very important, though. Probably, it's best to leave it as is for the moment and just add a new test case, annotated with 'check-known-to-fail'. -- Luc -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html