From: Kazu Hirata Date: Sat, 2 Dec 2006 01:03:11 +0000 (+0000) Subject: Makefile.in, [...]: Fix comment typos. X-Git-Tag: releases/gcc-4.3.0~8180 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d3c56bc88f4542e61ffba49b4af8ea1ef0681468;p=thirdparty%2Fgcc.git Makefile.in, [...]: Fix comment typos. * Makefile.in, mingw32.h, trans.c: Fix comment typos. * gnat_rm.texi, gnat_ugn.texi: Follow spelling conventions. Fix typos. From-SVN: r119437 --- diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index acd9d6ecf098..08cb9de96acb 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,9 @@ +2006-12-02 Kazu Hirata + + * Makefile.in, mingw32.h, trans.c: Fix comment typos. + * gnat_rm.texi, gnat_ugn.texi: Follow spelling conventions. + Fix typos. + 2006-11-17 Eric Botcazou PR ada/27936 diff --git a/gcc/ada/Makefile.in b/gcc/ada/Makefile.in index a8c5fe043af4..760d42582ec5 100644 --- a/gcc/ada/Makefile.in +++ b/gcc/ada/Makefile.in @@ -1428,7 +1428,7 @@ ifneq ($(EH_MECHANISM),) endif # Use the Ada 2005 version of Ada.Exceptions by default, unless specified -# explicitely already. The base files (a-except.ad?) are used only for building +# explicitly already. The base files (a-except.ad?) are used only for building # the compiler and other basic tools. # These base versions lack Ada 2005 additions which would cause bootstrap # problems if included in the compiler and other basic tools. diff --git a/gcc/ada/gnat_rm.texi b/gcc/ada/gnat_rm.texi index bf2d61ddc087..fad7e14652e7 100644 --- a/gcc/ada/gnat_rm.texi +++ b/gcc/ada/gnat_rm.texi @@ -5136,7 +5136,7 @@ prefix) provides the same value as @code{System.Storage_Unit}. @findex Stub_Type @noindent The GNAT implementation of remote access-to-classwide types is -organised as described in AARM section E.4 (20.t): a value of an RACW type +organized as described in AARM section E.4 (20.t): a value of an RACW type (designating a remote object) is represented as a normal access value, pointing to a "stub" object which in turn contains the necessary information to contact the designated remote object. A @@ -10522,7 +10522,7 @@ when one of these values is read, any nonzero value is treated as True. For 64-bit OpenVMS systems, access types (other than those for unconstrained arrays) are 64-bits long. An exception to this rule is for the case of C-convention access types where there is no explicit size clause present (or -inheritied for derived types). In this case, GNAT chooses to make these +inherited for derived types). In this case, GNAT chooses to make these pointers 32-bits, which provides an easier path for migration of 32-bit legacy code. size clause specifying 64-bits must be used to obtain a 64-bit pointer. @@ -11754,7 +11754,7 @@ is only used for wide characters with a code greater than @code{16#FF#}. Note that brackets coding is not normally used in the context of Wide_Text_IO or Wide_Wide_Text_IO, since it is really just designed as -a portable way of encoding source files. In the contect of Wide_Text_IO +a portable way of encoding source files. In the context of Wide_Text_IO or Wide_Wide_Text_IO, it can only be used if the file does not contain any instance of the left bracket character other than to encode wide character values using the brackets encoding method. In practice it is diff --git a/gcc/ada/gnat_ugn.texi b/gcc/ada/gnat_ugn.texi index 480ad9c540ed..214369a37bd0 100644 --- a/gcc/ada/gnat_ugn.texi +++ b/gcc/ada/gnat_ugn.texi @@ -4674,7 +4674,7 @@ A range in a @code{for} loop that is known to be null or might be null @noindent The following section lists compiler switches that are available to control the handling of warning messages. It is also possible -to excercise much finer control over what warnings are issued and +to exercise much finer control over what warnings are issued and suppressed using the GNAT pragma Warnings, which is documented in the GNAT Reference manual. diff --git a/gcc/ada/mingw32.h b/gcc/ada/mingw32.h index 1f5a7115a446..7b6353178e3d 100644 --- a/gcc/ada/mingw32.h +++ b/gcc/ada/mingw32.h @@ -48,7 +48,7 @@ #else -/* Older MingW versions have no defintion for _tfreopen, add it here to have a +/* Older MingW versions have no definition for _tfreopen, add it here to have a proper build without unicode support. */ #ifndef _tfreopen #define _tfreopen freopen diff --git a/gcc/ada/trans.c b/gcc/ada/trans.c index 8adff5e0a418..7b9c260ff6b1 100644 --- a/gcc/ada/trans.c +++ b/gcc/ada/trans.c @@ -1199,7 +1199,7 @@ Case_Statement_to_gnu (Node_Id gnat_node) /* If the case value is a subtype that raises Constraint_Error at run-time because of a wrong bound, then gnu_low or gnu_high - is not transtaleted into an INTEGER_CST. In such a case, we need + is not translated into an INTEGER_CST. In such a case, we need to ensure that the when statement is not added in the tree, otherwise it will crash the gimplifier. */ if ((!gnu_low || TREE_CODE (gnu_low) == INTEGER_CST)