From 8e158db406c75855a68e3317d0ea01991cf0a578 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 1 Feb 1994 11:25:27 -0500 Subject: [PATCH] (rest_of_compilation): `volatile' function warning corrected to read `noreturn' function warning. From-SVN: r6459 --- gcc/toplev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.30.2