diff options
author | H.J. Lu <hjl@gnu.org> | 2002-01-04 06:41:24 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2002-01-04 06:41:24 +0100 |
commit | c4cc12b7bbf6e6f3b6f6edd54cc2a690f9ee710e (patch) | |
tree | 017f5de44e0ef228a9a27f5df96ce64ff1d94007 /gcc/toplev.c | |
parent | 173bf5be749b88cee4d2ebb095c504de63a412d8 (diff) | |
download | gcc-c4cc12b7bbf6e6f3b6f6edd54cc2a690f9ee710e.tar.gz |
toplev.c (rest_of_compilation): Fix a typo when calling cleanup_cfg.
2002-01-04 H.J. Lu <hjl@gnu.org>
* toplev.c (rest_of_compilation): Fix a typo when calling
cleanup_cfg.
From-SVN: r48527
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 273db7793ad..02e6befb514 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1,6 +1,6 @@ /* Top level of GNU C compiler Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GCC. @@ -2941,7 +2941,7 @@ rest_of_compilation (decl) open_dump_file (DFI_cfg, decl); find_basic_blocks (insns, max_reg_num (), rtl_dump_file); - cleanup_cfg (optimize ? CLEANUP_EXPENSIVE : 0 + cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | (flag_thread_jumps ? CLEANUP_THREADING : 0)); check_function_return_warnings (); |