diff mbox series

fix checking if type is void

Message ID 20200809114910.16092-1-luc.vanoostenryck@gmail.com (mailing list archive)
State Mainlined, archived
Headers show
Series fix checking if type is void | expand

Commit Message

Luc Van Oostenryck Aug. 9, 2020, 11:49 a.m. UTC
Sparse warns if a void function returns a non-void expression.

But the check directly compares the returned type with void_ctype,
without taking in account the presence of a SYM_NODE. In
consequence, sparse issues a few false warnings.

Fix this by using is_void_type() to test the returned type.

Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
---
 evaluate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: e1578773182e8f69c3a0cd8add8dfbe7561a8240
diff mbox series

Patch

diff --git a/evaluate.c b/evaluate.c
index dddea76182ad..6d5bbca50bb3 100644
--- a/evaluate.c
+++ b/evaluate.c
@@ -3544,7 +3544,7 @@  static struct symbol *evaluate_return_expression(struct statement *stmt)
 	fntype = current_fn->ctype.base_type;
 	rettype = fntype->ctype.base_type;
 	if (!rettype || rettype == &void_ctype) {
-		if (expr && expr->ctype != &void_ctype)
+		if (expr && !is_void_type(expr->ctype))
 			expression_error(expr, "return expression in %s function", rettype?"void":"typeless");
 		if (expr && Wreturn_void)
 			warning(stmt->pos, "returning void-valued expression");