diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-18 17:32:54 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-18 17:32:54 +0000 |
commit | 0beac6fcf7dc49a434d398036b8eae8271a5e75b (patch) | |
tree | 194220596a30a54f69c02beeac10a3e12a189d98 /gcc/Makefile.in | |
parent | 2627e25d3cdf70ebc0094f6ec8489cee8f229240 (diff) | |
download | gcc-0beac6fcf7dc49a434d398036b8eae8271a5e75b.tar.gz |
* Makefile.in (tree-ssa-phiopt.o): Depends on flags.h.
* tree-ssa-phiopt.c: Include flags.h.
(conditional_replacement): Remove argument names from prototype.
Minor formatting and comment fixes.
(tree_ssa_phiopt): If conditional_replacement returns false, then
call value_replacement.
(value_replacement): New function.
* gcc.dg/tree-ssa/20040518-1.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81999 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 39fbe32f854..804aa5ea88a 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1581,7 +1581,7 @@ tree-ssa-forwprop.o : tree-ssa-forwprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ $(TREE_FLOW_H) tree-pass.h $(TREE_DUMP_H) tree-ssa-phiopt.o : tree-ssa-phiopt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ $(TM_H) errors.h $(GGC_H) $(TREE_H) $(RTL_H) $(TM_P_H) $(BASIC_BLOCK_H) \ - $(TREE_FLOW_H) tree-pass.h $(TREE_DUMP_H) langhooks.h + $(TREE_FLOW_H) tree-pass.h $(TREE_DUMP_H) langhooks.h flags.h tree-nrv.o : tree-nrv.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ $(TM_H) $(TREE_H) $(RTL_H) function.h $(BASIC_BLOCK_H) $(EXPR_H) \ diagnostic.h $(TREE_FLOW_H) $(TIMEVAR_H) $(TREE_DUMP_H) tree-pass.h \ |