diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-27 15:08:00 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-27 15:08:00 +0000 |
commit | 68e419a19e2eecff8eb182426b384e3b59de9857 (patch) | |
tree | 68682fab584c02bf97095da96bcf11d8fa082ce4 /gcc/sched-rgn.c | |
parent | 0f9d9d89515a03862278ed96f921c49b67a6fda3 (diff) | |
download | gcc-68e419a19e2eecff8eb182426b384e3b59de9857.tar.gz |
* sched-ebb.c: Rename struct deps to struct deps_desc.
* ddg.c: Likewise.
* sel-sched-ir.c: Likewise.
* sched-deps.c: Likewise.
* sched-int.h: Likewise.
* sched-rgn.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159923 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched-rgn.c')
-rw-r--r-- | gcc/sched-rgn.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/sched-rgn.c b/gcc/sched-rgn.c index 522647a8be5..11dc83cd805 100644 --- a/gcc/sched-rgn.c +++ b/gcc/sched-rgn.c @@ -237,7 +237,7 @@ static void compute_block_dependences (int); static void schedule_region (int); static rtx concat_INSN_LIST (rtx, rtx); static void concat_insn_mem_list (rtx, rtx, rtx *, rtx *); -static void propagate_deps (int, struct deps *); +static void propagate_deps (int, struct deps_desc *); static void free_pending_lists (void); /* Functions for construction of the control flow graph. */ @@ -2567,7 +2567,7 @@ add_branch_dependences (rtx head, rtx tail) the variables of its predecessors. When the analysis for a bb completes, we save the contents to the corresponding bb_deps[bb] variable. */ -static struct deps *bb_deps; +static struct deps_desc *bb_deps; /* Duplicate the INSN_LIST elements of COPY and prepend them to OLD. */ @@ -2601,7 +2601,7 @@ concat_insn_mem_list (rtx copy_insns, rtx copy_mems, rtx *old_insns_p, /* Join PRED_DEPS to the SUCC_DEPS. */ void -deps_join (struct deps *succ_deps, struct deps *pred_deps) +deps_join (struct deps_desc *succ_deps, struct deps_desc *pred_deps) { unsigned reg; reg_set_iterator rsi; @@ -2660,7 +2660,7 @@ deps_join (struct deps *succ_deps, struct deps *pred_deps) /* After computing the dependencies for block BB, propagate the dependencies found in TMP_DEPS to the successors of the block. */ static void -propagate_deps (int bb, struct deps *pred_deps) +propagate_deps (int bb, struct deps_desc *pred_deps) { basic_block block = BASIC_BLOCK (BB_TO_BLOCK (bb)); edge_iterator ei; @@ -2715,7 +2715,7 @@ static void compute_block_dependences (int bb) { rtx head, tail; - struct deps tmp_deps; + struct deps_desc tmp_deps; tmp_deps = bb_deps[bb]; @@ -3150,7 +3150,7 @@ sched_rgn_compute_dependencies (int rgn) init_deps_global (); /* Initializations for region data dependence analysis. */ - bb_deps = XNEWVEC (struct deps, current_nr_blocks); + bb_deps = XNEWVEC (struct deps_desc, current_nr_blocks); for (bb = 0; bb < current_nr_blocks; bb++) init_deps (bb_deps + bb, false); |