diff options
| -rw-r--r-- | target.c | 2 | ||||
| -rw-r--r-- | validation/sizeof-bool.c | 6 |
2 files changed, 2 insertions, 6 deletions
@@ -14,7 +14,7 @@ int max_alignment = 16; /* * Integer data types */ -int bits_in_bool = 1; +int bits_in_bool = 8; int bits_in_char = 8; int bits_in_short = 16; int bits_in_int = 32; diff --git a/validation/sizeof-bool.c b/validation/sizeof-bool.c index 6c68748a..71ae1bce 100644 --- a/validation/sizeof-bool.c +++ b/validation/sizeof-bool.c @@ -4,9 +4,5 @@ static int a(void) } /* * check-name: sizeof(_Bool) is valid - * check-description: sizeof(_Bool) was rejected because _Bool is not an even - * number of bytes - * check-error-start -sizeof-bool.c:3:16: warning: expression using sizeof bool - * check-error-end + * check-description: sizeof(_Bool) is valid */ |
