As it turns out, our validation test harness doesn't catch <stdbool.h> related breakage so add a minimal test case that does. Cc: Christopher Li <sparse@xxxxxxxxxxx> Cc: Jeff Garzik <jgarzik@xxxxxxxxxx> Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxx> --- validation/backend/bool-test.c | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) create mode 100644 validation/backend/bool-test.c diff --git a/validation/backend/bool-test.c b/validation/backend/bool-test.c new file mode 100644 index 0000000..51ae356 --- /dev/null +++ b/validation/backend/bool-test.c @@ -0,0 +1,11 @@ +#include <stdbool.h> + +static bool return_false(void) +{ + return false; +} + +/* + * check-name: Boolean type code generation + * check-command: ./sparsec -c $file -o tmp.o + */ -- 1.7.6.4 -- 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