diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-01 11:25:27 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-01 11:25:27 -0500 |
commit | 8e158db406c75855a68e3317d0ea01991cf0a578 (patch) | |
tree | b62f06202dd15b19d68469caef65f046173e0b49 /gcc | |
parent | 08bf538e504292832a187cd07a5159616c47e640 (diff) | |
download | gcc-8e158db406c75855a68e3317d0ea01991cf0a578.zip gcc-8e158db406c75855a68e3317d0ea01991cf0a578.tar.gz gcc-8e158db406c75855a68e3317d0ea01991cf0a578.tar.bz2 |
(rest_of_compilation): `volatile' function warning corrected to read
`noreturn' function warning.
From-SVN: r6459
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index c69b23c..182965a7 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)); |