summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-04 05:41:24 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-04 05:41:24 +0000
commit2ea2aed05280b1b5bb6c65cc564194f1d1cd0b47 (patch)
tree017f5de44e0ef228a9a27f5df96ce64ff1d94007
parent7cc7e1631fd3b2280b01a4a227f2f73c5ed8f3f7 (diff)
downloadppe42-gcc-2ea2aed05280b1b5bb6c65cc564194f1d1cd0b47.tar.gz
ppe42-gcc-2ea2aed05280b1b5bb6c65cc564194f1d1cd0b47.zip
2002-01-04 H.J. Lu <hjl@gnu.org>
* toplev.c (rest_of_compilation): Fix a typo when calling cleanup_cfg. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48527 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/toplev.c4
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 57b4c66c4f4..501e1552444 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-01-04 H.J. Lu <hjl@gnu.org>
+
+ * toplev.c (rest_of_compilation): Fix a typo when calling
+ cleanup_cfg.
+
2002-01-03 Kazu Hirata <kazu@hxi.com>
* c-common.c: Fix formatting.
@@ -37,7 +42,7 @@
(profile_after_prologue): Likewise.
* function.c (expand_function_start): Likewise.
(expand_function_start): Likewise.
- * config/alpha/alpha.c (direct_call_operand):
+ * config/alpha/alpha.c (direct_call_operand):
(alpha_does_function_need_gp): Likewise.
(alpha_expand_prologue): Likewise.
* config/arm/arm.c (arm_expand_prologue): Likewise.
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 ();
OpenPOWER on IntegriCloud