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/except.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/except.c')
-rw-r--r-- | gcc/except.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/except.c b/gcc/except.c index e45e71f5a86..1bbc9998a33 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -137,7 +137,7 @@ struct eh_region ERT_FIXUP } type; - /* Holds the action to perform based on the preceeding type. */ + /* Holds the action to perform based on the preceding type. */ union { /* A list of catch blocks, a surrounding try block, and the label for continuing after a catch. */ @@ -2014,7 +2014,7 @@ sjlj_assign_call_site_values (dispatch_label, lp_info) A region receives a dispatch index if it is directly reachable and requires in-function processing. Regions that share post-landing - pads may share dispatch indicies. */ + pads may share dispatch indices. */ /* ??? Post-landing pad sharing doesn't actually happen at the moment (see build_post_landing_pads) so we don't bother checking for it. */ @@ -3041,7 +3041,7 @@ expand_eh_return () } /* In the following functions, we represent entries in the action table - as 1-based indicies. Special cases are: + as 1-based indices. Special cases are: 0: null action record, non-null landing pad; implies cleanups -1: null action record, null landing pad; implies no action @@ -3098,7 +3098,7 @@ add_action_record (ar_hash, filter, next) /* The filter value goes in untouched. The link to the next record is a "self-relative" byte offset, or zero to indicate that there is no next record. So convert the absolute 1 based - indicies we've been carrying around into a displacement. */ + indices we've been carrying around into a displacement. */ push_sleb128 (&cfun->eh->action_record_data, filter); if (next) |