aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@gcc.gnu.org>2001-11-11 11:25:28 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2001-11-11 11:25:28 +0000
commiteaec9b3d7ed15d4d07e0091a361e52c73d2170b3 (patch)
treeb852443590ce1b94b516d895ae6e1e58523886b8 /gcc/cfg.c
parent592bf28c9096a01cf9576951123cb248d4869803 (diff)
downloadgcc-eaec9b3d7ed15d4d07e0091a361e52c73d2170b3.zip
gcc-eaec9b3d7ed15d4d07e0091a361e52c73d2170b3.tar.gz
gcc-eaec9b3d7ed15d4d07e0091a361e52c73d2170b3.tar.bz2
ChangeLog.2, [...]: Fix spelling errors.
* ChangeLog.2, ChangeLog.3, ChangeLog.4, ChangeLog.5, ChangeLog, cfg.c, cfganal.c, cfgcleanup.c, cfglayout.c, cfgloop.c, cfgrtl.c, collect2.c, combine.c, config.in, configure, configure.in, conflict.c, dwarf2out.c, dwarfout.c, except.c, final.c, flow.c, genattrtab.c, ggc-page.c, jump.c, lcm.c, predict.c, reg-stack.c, reload1.c, rtlanal.c, sched-rgn.c, toplev.c, unwind-dw2-fde.h: Fix spelling errors. From-SVN: r46928
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index 6071e8d..57743df 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -33,7 +33,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
make_edge, make_single_succ_edge, cached_make_edge, remove_edge
- Low level edge redirection (without updating instruction chain)
redirect_edge_succ, redirect_edge_succ_nodup, redirect_edge_pred
- - Dumpipng and debugging
+ - Dumping and debugging
dump_flow_info, debug_flow_info, dump_edge_info
- Allocation of AUX fields for basic blocks
alloc_aux_for_blocks, free_aux_for_blocks, alloc_aux_for_block
@@ -119,7 +119,7 @@ struct basic_block_def entry_exit_blocks[2]
void debug_flow_info PARAMS ((void));
static void free_edge PARAMS ((edge));
-/* Called once at intialization time. */
+/* Called once at initialization time. */
void
init_flow ()
@@ -319,7 +319,7 @@ make_edge (src, dest, flags)
return cached_make_edge (NULL, src, dest, flags);
}
-/* Create an edge connecting SRC to DEST and set probability by knowling
+/* Create an edge connecting SRC to DEST and set probability by knowing
that it is the single edge leaving SRC. */
edge
@@ -389,7 +389,7 @@ redirect_edge_succ (e, new_succ)
e->dest = new_succ;
}
-/* Like previous but avoid possible dupplicate edge. */
+/* Like previous but avoid possible duplicate edge. */
edge
redirect_edge_succ_nodup (e, new_succ)