summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-22 18:51:56 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-22 18:51:56 +0000
commitf6c4232279fc9a781ee4af3e6e3b4c8d79c7d2cc (patch)
tree58a7da4656068ff4fda0ff5e0fa881ccfed7281d /gcc
parent43532a83bf9e2c98aabc3c564a2965e850bad131 (diff)
downloadgcc-f6c4232279fc9a781ee4af3e6e3b4c8d79c7d2cc.tar.gz
* passes.c (init_optimization_passes): Do not rerun
pass_early_warn_uninitialized. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121060 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog20
-rw-r--r--gcc/passes.c1
2 files changed, 13 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 038da597b41..b866ea0b49b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-22 Jan Hubicka <jh@suse.cz>
+
+ * passes.c (init_optimization_passes): Do not rerun
+ pass_early_warn_uninitialized.
+
2007-01-22 Richard Guenther <rguenther@suse.de>
PR tree-optimization/30038
@@ -33,14 +38,14 @@
2007-01-21 Jan Hubicka <jh@suse.cz>
* ipa-inline.c (inlining_mode): Comment, move up.
- (cgraph_decide_inlining_incrementally): Do not perform inlining itself; fix
- handling of flattening of self recursive functions.
+ (cgraph_decide_inlining_incrementally): Do not perform inlining itself;
+ fix handling of flattening of self recursive functions.
(cgraph_find_cycles): Remove.
(cgraph_flatten_node): Remove.
(cgraph_decide_inlining): Use incremental inliner to handle flattening.
(try_inline): New function.
- (cgraph_early_inlining): Update call of cgraph_decide_inlining_incrementally.
- Apply inlining here.
+ (cgraph_early_inlining): Update call of
+ cgraph_decide_inlining_incrementally. Apply inlining here.
(apply_inline): Update call of cgraph_decide_inlining_incrementally.
2007-01-21 Dirk Mueller <dmueller@suse.de>
@@ -197,9 +202,10 @@
2007-01-19 Jan Hubicka <jh@suse.cz>
- * ipa-inline.c (cgraph_decide_inlining_incrementally): Instead of 'early' argument
- take inlining mode argument specifying whether to inline for size/speeed or all
- functions; add support for flattening; improve dumpting.
+ * ipa-inline.c (cgraph_decide_inlining_incrementally): Instead of
+ 'early' argument take inlining mode argument specifying whether to
+ inline for size/speeed or all functions; add support for flattening;
+ improve dumpting.
(cgraph_early_inlining): Update call of decide_inlining_incrementally.
2007-01-19 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
diff --git a/gcc/passes.c b/gcc/passes.c
index 2e17599bc8c..5333beace15 100644
--- a/gcc/passes.c
+++ b/gcc/passes.c
@@ -521,7 +521,6 @@ init_optimization_passes (void)
NEXT_PASS (pass_may_alias);
NEXT_PASS (pass_return_slot);
NEXT_PASS (pass_rename_ssa_copies);
- NEXT_PASS (pass_early_warn_uninitialized);
/* Initial scalar cleanups. */
NEXT_PASS (pass_ccp);