Commit 6df4a7b9 by Richard Stallman

(start_function): Warn if volatile fn returns non-void.

From-SVN: r5022
parent 43a92256
......@@ -5648,6 +5648,10 @@ start_function (declspecs, declarator, nested)
announce_function (decl1);
if (TREE_THIS_VOLATILE (decl)
&& TREE_TYPE (decl) != void_type_node)
warning ("volatile function returns non-void value");
if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
{
error ("return-type is an incomplete type");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment