(c_expand_return): `volatile' function warning corrected to read

`noreturn' function warning.

From-SVN: r6458
This commit is contained in:
Richard Kenner 1994-02-01 11:23:47 -05:00
parent 11433f425c
commit 08bf538e50
1 changed files with 1 additions and 1 deletions

View File

@ -6190,7 +6190,7 @@ c_expand_return (retval)
tree valtype = TREE_TYPE (TREE_TYPE (current_function_decl));
if (TREE_THIS_VOLATILE (current_function_decl))
warning ("function declared `volatile' has a `return' statement");
warning ("function declared `noreturn' has a `return' statement");
if (!retval)
{