aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/raise.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-05-29 03:57:15 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-05-29 03:57:15 +0000
commit5ff62c2e815d91b79229cb15058828724d956f85 (patch)
tree2da0d7b83f595be76a4a27d1501d770959ab4e85 /gcc/ada/raise.c
parentfe21ff2d90d45aad1e0f7e60fc195fcbb5501ebb (diff)
downloadgcc-5ff62c2e815d91b79229cb15058828724d956f85.zip
gcc-5ff62c2e815d91b79229cb15058828724d956f85.tar.gz
gcc-5ff62c2e815d91b79229cb15058828724d956f85.tar.bz2
cal.c, [...]: Fix comment typos.
* cal.c, decl.c, init.c, raise.c, trans.c, utils2.c: Fix comment typos. * gnat_rm.texi, gnat_ugn.texi: Fix typos. From-SVN: r100312
Diffstat (limited to 'gcc/ada/raise.c')
-rw-r--r--gcc/ada/raise.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/raise.c b/gcc/ada/raise.c
index d0abc8a..626adfe 100644
--- a/gcc/ada/raise.c
+++ b/gcc/ada/raise.c
@@ -264,7 +264,7 @@ db_phases (int phases)
table which heads a list of possible actions to be taken (see below).
If it is determined that indeed an action should be taken, that
- is, if one action filter matches the exception beeing propagated,
+ is, if one action filter matches the exception being propagated,
then control should be transfered to landing-pad.
A null first-action-index indicates that there are only cleanups
@@ -283,7 +283,7 @@ db_phases (int phases)
Non null action-filters provide an index into the ttypes [] table
(see below), from which information may be retrieved to check if it
- matches the exception beeing propagated.
+ matches the exception being propagated.
action-filter > 0 means there is a regular handler to be run,
@@ -302,7 +302,7 @@ db_phases (int phases)
A null value indicates a catch-all handler in C++, and an "others"
handler in Ada.
- Non null values are used to match the exception beeing propagated:
+ Non null values are used to match the exception being propagated:
In C++ this is a pointer to some rtti data, while in Ada this is an
exception id.
@@ -611,7 +611,7 @@ get_region_description_for (_Unwind_Context *uw_context,
typedef enum
{
/* Found some call site base data, but need to analyze further
- before beeing able to decide. */
+ before being able to decide. */
unknown,
/* There is nothing relevant in the context at hand. */
@@ -761,7 +761,7 @@ get_call_site_action_for (_Unwind_Context *uw_context,
{
_Unwind_Ptr ip
= _Unwind_GetIP (uw_context) - 1;
- /* Substract 1 because GetIP yields a call return address while we are
+ /* Subtract 1 because GetIP yields a call return address while we are
interested in information for the call point. This does not always yield
the exact call instruction address but always brings the ip back within
the corresponding region.