From: Richard Kenner Date: Tue, 1 Feb 1994 16:23:47 +0000 (-0500) Subject: (c_expand_return): `volatile' function warning corrected to read X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08bf538e504292832a187cd07a5159616c47e640;p=gcc.git (c_expand_return): `volatile' function warning corrected to read `noreturn' function warning. From-SVN: r6458 --- diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 2fa53d2a953..0437a0f636f 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -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) {