diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-26 05:03:55 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-26 05:03:55 +0000 |
commit | 2c763ed45031e6a2183d320ac62cc8bcdaf45445 (patch) | |
tree | 33b4de272330067b4be95383df8cefd291cd4392 /gcc/ddg.c | |
parent | 7df90de3e444cdf3fba595a84a4d74c60aade2ee (diff) | |
download | gcc-2c763ed45031e6a2183d320ac62cc8bcdaf45445.tar.gz |
* c-typeck.c, cfgexpand.c, ddg.c, ddg.h, df.c, fold-const.c,
gcov.c, gimplify.c, modulo-sched.c, passes.c, tree-cfg.c,
tree-mudflap.c, tree-nrv.c, tree-outof-ssa.c, tree-ssa-dom.c,
tree-ssa-dse.c, tree-ssa-operands.c, tree-ssa-pre.c,
tree-tailcall.c: Fix comment typos. Follow spelling
conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83703 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ddg.c')
-rw-r--r-- | gcc/ddg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ddg.c b/gcc/ddg.c index 5ab8f0d7a13..00c78f9feef 100644 --- a/gcc/ddg.c +++ b/gcc/ddg.c @@ -383,7 +383,7 @@ build_intra_loop_deps (ddg_ptr g) get_block_head_tail (g->bb->index, &head, &tail); sched_analyze (&tmp_deps, head, tail); - /* Build intra-loop data dependecies using the scheduler dependecy + /* Build intra-loop data dependencies using the scheduler dependency analysis. */ for (i = 0; i < g->num_nodes; i++) { @@ -509,7 +509,7 @@ create_ddg (basic_block bb, struct df *df, int closing_branch_deps) if (!g->closing_branch) abort (); /* Found no branch in DDG. */ - /* Build the data dependecy graph. */ + /* Build the data dependency graph. */ build_intra_loop_deps (g); build_inter_loop_deps (g, df); return g; |