This serie adds scope & storage validations of C99-style for-loop initializers. Patch 1 replaces the current indirect test by a direct one Patch 2-3 add test cases for the scope & storage Patch 4-5 add missing storage validation Patch 6 reorder default validation with the c99-for-loop one Changes since v1: - better log message for patch 1, thanks to Ramsay Jones Changes since v2: - patches 1-3 are unchanged. - do not use 'NULL' for the default method - limit changes to parse.c, leaving external_declaration() untouched - use a more generic and exact name for the method - move a check to default_process_decl() Changes since v3: - patches 1-3 are unchanged. - focus the role of the method on validation - use again 'NULL', meaning that no additional validation is needed - remove the wrapper as it's not not needed anymore - get around with the poor naming Luc Van Oostenryck (6): replace test for c99 for-loop initializers add test case for scope of C99 for-loop declarations add test cases for storage of c99 for-loop declarations add an optional validation method to external_declaration() check the storage of C99 for-loop initializers move 'extern with initializer' validation after the validate method lib.c | 2 +- parse.c | 30 +++++++++++++++++++++++------- parse.h | 3 ++- validation/c99-for-loop-decl.c | 40 ++++++++++++++++++++++++++++++++++++++++ validation/c99-for-loop.c | 36 ++++++++++++------------------------ 5 files changed, 78 insertions(+), 33 deletions(-) create mode 100644 validation/c99-for-loop-decl.c -- 2.11.1 -- 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