diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-11 11:25:28 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-11 11:25:28 +0000 |
commit | 4a82352a84766c06cff20385665f3f3828163a19 (patch) | |
tree | b852443590ce1b94b516d895ae6e1e58523886b8 /gcc/cfg.c | |
parent | 5a9d41154c3a682cf8b9dbad859d194bc71df4f3 (diff) | |
download | gcc-4a82352a84766c06cff20385665f3f3828163a19.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46928 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index 6071e8dbedc..57743dfef0a 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) |