* [PATCH v2] fix casting constant to _Bool
@ 2012-06-17 18:45 Xi Wang
0 siblings, 0 replies; only message in thread
From: Xi Wang @ 2012-06-17 18:45 UTC (permalink / raw)
To: linux-sparse; +Cc: Xi Wang, Pekka Enberg, Linus Torvalds, Dan Carpenter
Casting to _Bool requires a zero test rather than truncation. Also add
a new cast warning for _Bool since this is not about truncation.
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Xi Wang <xi.wang@gmail.com>
---
expand.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/expand.c b/expand.c
index 63a9075..fcdefcb 100644
--- a/expand.c
+++ b/expand.c
@@ -92,6 +92,14 @@ void cast_value(struct expression *expr, struct symbol *newtype,
value = get_longlong(old);
Int:
+ // _Bool requires a zero test rather than truncation.
+ if (is_bool_type(newtype)) {
+ expr->value = value ? 1 : 0;
+ if (!conservative && value != 0 && value != 1)
+ warning(old->pos, "odd constant _Bool cast (%llx becomes 1)", value);
+ return;
+ }
+
// Truncate it to the new size
signmask = 1ULL << (new_size-1);
mask = signmask | (signmask-1);
--
1.7.9.5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-06-17 18:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-17 18:45 [PATCH v2] fix casting constant to _Bool Xi Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).