aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@gcc.gnu.org>2001-11-23 02:05:19 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2001-11-23 02:05:19 +0000
commita1f300c0f19c17e0b17fe8017bc3cb79f23337bd (patch)
tree827acc65803788d44d036826826c0366d5c3edc9 /gcc/except.c
parent754d92990a56ddb0319ecd360eed752684423f0a (diff)
downloadgcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.zip
gcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.tar.gz
gcc-a1f300c0f19c17e0b17fe8017bc3cb79f23337bd.tar.bz2
ChangeLog.0, [...]: Fix spelling errors.
* ChangeLog.0, ChangeLog.2, ChangeLog.3, ChangeLog.4, ChangeLog, FSFChangeLog.10, c-decl.c, cppfiles.c, cppinit.c, cpplex.c, cpplib.c, cppmain.c, cse.c, df.c, diagnostic.c, dominance.c, dwarf2out.c, dwarfout.c, emit-rtl.c, errors.c, except.c, except.h, explow.c, function.c, gcse.c, genrecog.c, predict.c, regmove.c, sched-rgn.c, ssa-ccp.c, stmt.c, toplev.c: Fix spelling errors. From-SVN: r47279
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/except.c b/gcc/except.c
index ad9b9f5..cc7177d 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -679,7 +679,7 @@ expand_eh_region_end ()
struct eh_region *cur_region = cfun->eh->cur_region;
rtx note;
- /* Create a nute marking the end of this region. */
+ /* Create a note marking the end of this region. */
note = emit_note (NULL, NOTE_INSN_EH_REGION_END);
NOTE_EH_HANDLER (note) = cur_region->region_number;
@@ -715,7 +715,7 @@ expand_eh_region_end_cleanup (handler)
emit_label (region->label);
/* Give the language a chance to specify an action to be taken if an
- exception is thrown that would propogate out of the HANDLER. */
+ exception is thrown that would propagate out of the HANDLER. */
protect_cleanup_actions
= (lang_protect_cleanup_actions
? (*lang_protect_cleanup_actions) ()
@@ -1559,7 +1559,7 @@ lookup_type_for_runtime (type)
slot = (tree *) htab_find_slot_with_hash (type_to_runtime_map, type,
TYPE_HASH (type), NO_INSERT);
- /* We should have always inserrted the data earlier. */
+ /* We should have always inserted the data earlier. */
return TREE_VALUE (*slot);
}
@@ -1784,7 +1784,7 @@ build_post_landing_pads ()
all the way up the chain until blocked by a cleanup. */
/* ??? Outer try regions can share landing pads with inner
try regions if the types are completely non-overlapping,
- and there are no interveaning cleanups. */
+ and there are no intervening cleanups. */
region->post_landing_pad = gen_label_rtx ();
@@ -3243,7 +3243,7 @@ collect_one_action_chain (ar_hash, region)
/* Process the associated catch regions in reverse order.
If there's a catch-all handler, then we don't need to
search outer regions. Use a magic -3 value to record
- that we havn't done the outer search. */
+ that we haven't done the outer search. */
next = -3;
for (c = region->u.try.last_catch; c ; c = c->u.catch.prev_catch)
{