aboutsummaryrefslogtreecommitdiff
path: root/gcc/df.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2001-07-10 16:27:54 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2001-07-10 16:27:54 +0000
commit8060cd6963eb04052f752b5eb5ed28206fbc113b (patch)
tree293c0299d13f461414925ccfc4ceaef8e4353007 /gcc/df.c
parent1da83a98faeeed42f48c65041d56638254cc82dd (diff)
* ssa-ccp.c (first_phi_node): Remove. Replace uses with calls to
first_insn_after_basic_block_note instead. * df.c (df_bb_refs_unlink): #if 0 out for now. * ssa.h: Add prototype for ssa_const_prop * ssa-ccp.c: Add prototype for ssa_fast_dce and mark_references (ssa_ccp_substitute_constants): Fix signed vs unsigned comparison (ssa_fast_dce): Remove unused variable git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43906 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df.c')
-rw-r--r--gcc/df.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/df.c b/gcc/df.c
index 4b049f55087..36ae66f783f 100644
--- a/gcc/df.c
+++ b/gcc/df.c
@@ -218,8 +218,8 @@ static struct df_link *df_ref_unlink PARAMS((struct df_link **, struct ref *));
static void df_def_unlink PARAMS((struct df *, struct ref *));
static void df_use_unlink PARAMS((struct df *, struct ref *));
static void df_insn_refs_unlink PARAMS ((struct df *, basic_block, rtx));
-static void df_bb_refs_unlink PARAMS ((struct df *, basic_block));
#if 0
+static void df_bb_refs_unlink PARAMS ((struct df *, basic_block));
static void df_refs_unlink PARAMS ((struct df *, bitmap));
#endif
@@ -2513,6 +2513,7 @@ df_insn_refs_unlink (df, bb, insn)
}
+#if 0
/* Unlink all the insns within BB from their reference information. */
static void
df_bb_refs_unlink (df, bb)
@@ -2535,7 +2536,6 @@ df_bb_refs_unlink (df, bb)
}
-#if 0
/* Unlink all the refs in the basic blocks specified by BLOCKS.
Not currently used. */
static void