From: Richard Kenner Date: Tue, 1 Feb 1994 16:25:27 +0000 (-0500) Subject: (rest_of_compilation): `volatile' function warning corrected to read X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8e158db406c75855a68e3317d0ea01991cf0a578;p=gcc.git (rest_of_compilation): `volatile' function warning corrected to read `noreturn' function warning. From-SVN: r6459 --- diff --git a/gcc/toplev.c b/gcc/toplev.c index c69b23cd73e..182965a7c87 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -2747,7 +2747,7 @@ rest_of_compilation (decl) it only computes whether control can drop off the end of the function. */ if (optimize > 0 || extra_warnings || warn_return_type - /* If function is `volatile', we should warn if it tries to return. */ + /* If function is `noreturn', we should warn if it tries to return. */ || TREE_THIS_VOLATILE (decl)) { TIMEVAR (jump_time, reg_scan (insns, max_reg_num (), 0));