summaryrefslogtreecommitdiff
path: root/gcc/passes.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2007-02-14 17:52:25 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2007-02-14 17:52:25 +0000
commit1f0a4df8cc5ee68e09f680b735b355d1fe0acc1f (patch)
tree9fdff1e4943f3d35a0f3e5fcfb194ad9450680cd /gcc/passes.c
parent184c9ca90926f8cd4724633fc7a9ec7da0bc4048 (diff)
downloadgcc-1f0a4df8cc5ee68e09f680b735b355d1fe0acc1f.tar.gz
* tree-sra.c (early_sra): New.
(decl_can_be_decomposed_p): Deny va_list if early_sra. (tree_sra_early, pass_sra_early): New. * tree-pass.h (pass_sra_early): Declare. * passes.c (init_optimization_passes): Use it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121953 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/passes.c')
-rw-r--r--gcc/passes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/passes.c b/gcc/passes.c
index 6f1a99d0601..f90796d0461 100644
--- a/gcc/passes.c
+++ b/gcc/passes.c
@@ -489,7 +489,7 @@ init_optimization_passes (void)
NEXT_PASS (pass_rename_ssa_copies);
NEXT_PASS (pass_ccp);
NEXT_PASS (pass_forwprop);
- NEXT_PASS (pass_sra);
+ NEXT_PASS (pass_sra_early);
NEXT_PASS (pass_copy_prop);
NEXT_PASS (pass_merge_phi);
NEXT_PASS (pass_dce);