]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c-tree.texi (Types): Fix grammar.
authorTom Browder <tom.browder@gmail.com>
Thu, 31 Jan 2008 23:59:46 +0000 (23:59 +0000)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Thu, 31 Jan 2008 23:59:46 +0000 (23:59 +0000)
* doc/c-tree.texi (Types): Fix grammar.
(Expression trees): Ditto.
* doc/passes.texi (Tree-SSA passes): Ditto.

* doc/configterms.texi (Configure Terms): Fix typo.
* doc/cpp.texi (Common Predefined Macros): Ditto.
* doc/md.texi (Machine Constraints): Ditto.

* doc/makefile.texi (Makefile): Add comma.

From-SVN: r131987

gcc/ChangeLog
gcc/doc/c-tree.texi
gcc/doc/configterms.texi
gcc/doc/cpp.texi
gcc/doc/makefile.texi
gcc/doc/md.texi
gcc/doc/passes.texi

index c3241cff611a476f803d3ed597f5856c067e71ca..301df26cda2b111cce2d2fc31208b6027a6d698a 100644 (file)
@@ -1,3 +1,15 @@
+2008-01-31  Tom Browder <tom.browder@gmail.com>
+
+       * doc/c-tree.texi (Types): Fix grammar.
+       (Expression trees): Ditto.
+       * doc/passes.texi (Tree-SSA passes): Ditto.
+       
+       * doc/configterms.texi (Configure Terms): Fix typo.
+       * doc/cpp.texi (Common Predefined Macros): Ditto.
+       * doc/md.texi (Machine Constraints): Ditto.
+       
+       * doc/makefile.texi (Makefile): Add comma.
+
 2008-01-31  Tom Browder  <tom.browder@gmail.com>
            Gerald Pfeifer  <gerald@pfeifer.com>
        
index a53329a7a6b8a5d558c27207d5d6ce8961be5117..8ca96ed9e60e5512b4c85727b66810313c12cc6d 100644 (file)
@@ -312,7 +312,7 @@ The elements are indexed from zero.
 
 All types have corresponding tree nodes.  However, you should not assume
 that there is exactly one tree node corresponding to each type.  There
-are often several nodes each of which correspond to the same type.
+are often multiple nodes corresponding to the same type.
 
 For the most part, different kinds of types have different tree codes.
 (For example, pointer types use a @code{POINTER_TYPE} code while arrays
@@ -2017,7 +2017,7 @@ mind.  In particular, the expression ``tree'' is actually a directed
 acyclic graph.  (For example there may be many references to the integer
 constant zero throughout the source program; many of these will be
 represented by the same expression node.)  You should not rely on
-certain kinds of node being shared, nor should rely on certain kinds of
+certain kinds of node being shared, nor should you rely on certain kinds of
 nodes being unshared.
 
 The following macros can be used with all expression nodes:
index f97de5bd0966f3c12e2baa101e5762f84bab99a5..703fbdbea437c5a83174469b57384a321674cf38 100644 (file)
@@ -39,7 +39,7 @@ There is a proposal to call this a @dfn{crossback}.
 
 If build and host are the same, the GCC you are building will also be
 used to build the target libraries (like @code{libstdc++}).  If build and host
-are different, you must have already build and installed a cross
+are different, you must have already built and installed a cross
 compiler that will be used to build the target libraries (if you
 configured with @option{--target=foo-bar}, this compiler will be called
 @command{foo-bar-gcc}).
index 464965c35c78094e97488f72de5bccc5fb9796cc..740dd3b285c11524248b64852e88437843a82b2a 100644 (file)
@@ -1996,7 +1996,7 @@ on the command line of the preprocessor or C compiler.
 This macro expands to a decimal integer constant that represents the
 depth of nesting in include files.  The value of this macro is
 incremented on every @samp{#include} directive and decremented at the
-end of every included file.  It starts out at 0, it's value within the
+end of every included file.  It starts out at 0, its value within the
 base file specified on the command line.
 
 @item __ELF__
index f4513b79d7a4cd10126f49290eafa5b01d0b8b42..2afbeece379d29b3ceeb8bb633338c90dfae3d43 100644 (file)
@@ -100,7 +100,7 @@ rebuilt, and copied to its subdirectory.  This will allow you to, for
 example, continue a bootstrap after fixing a bug which causes the
 stage2 build to crash.  It does not provide as good coverage of the
 compiler as bootstrapping from scratch, but it ensures that the new
-code is syntactically correct (e.g. that you did not use GCC extensions
+code is syntactically correct (e.g., that you did not use GCC extensions
 by mistake), and avoids spurious bootstrap comparison
 failures@footnote{Except if the compiler was buggy and miscompiled
   some of the files that were not modified.  In this case, it's best
index fba9f9448fb6b4cd7b6bd2ddb9a14b2b3d1ba3ae..540efd48c98279b9d651535ebf060fc3686c1cfb 100644 (file)
@@ -2895,7 +2895,7 @@ Multiple letter constraint followed by 4 parameter letters.
          value of the other parts (F---all bits set)
 @end table
 The constraint matches if the specified part of a constant
-has a value different from it's other parts.
+has a value different from its other parts.
 
 @item Q
 Memory reference without index register and with short displacement.
index 2f354394e99d9651f09912822deaea3778faa013..b9a6de8c7a26aa46c0979c589127ed41b76ab1d7 100644 (file)
@@ -366,7 +366,7 @@ This pass transforms tail recursion into a loop.  It is located in
 
 @item Forward store motion
 
-This pass sinks stores and assignments down the flowgraph closer to it's
+This pass sinks stores and assignments down the flowgraph closer to their
 use point.  The pass is located in @file{tree-ssa-sink.c} and is
 described by @code{pass_sink_code}.
 
@@ -384,7 +384,7 @@ in @file{tree-ssa-math-opts.c} and is described by
 
 @item Full redundancy elimination
 
-This is a simpler form of PRE that only eliminate redundancies that
+This is a simpler form of PRE that only eliminates redundancies that
 occur an all paths.  It is located in @file{tree-ssa-pre.c} and
 described by @code{pass_fre}.