]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* tree.c (build_function_decl_skip_args): Fix grammar.
authorfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 21 May 2010 14:37:16 +0000 (14:37 +0000)
committerfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 21 May 2010 14:37:16 +0000 (14:37 +0000)
(build_function_type_list_1): Fix typos, adjust formatting.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159666 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree.c

index 2b3ec04d1351ab7f218036a137ca7ef73f60a42d..0c55bc4db00e72a9c8d2eb09d925949e336ebdde 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-21  Nathan Froyd  <froydnj@codesourcery.com>
+
+       * tree.c (build_function_decl_skip_args): Fix grammar.
+       (build_function_type_list_1): Fix typos, adjust formatting.
+
 2010-05-21  Steven Bosscher  <steven@gcc.gnu.org>
 
        * tree.h: Include real.h and fixed-value.h as basic datatypes.
index 120a10c07d31a2a4b9de1a3de0218e3a221e7839..805c0525a24226e2dc6d88444c42b42fdf537969 100644 (file)
@@ -7288,7 +7288,7 @@ build_function_type_skip_args (tree orig_type, bitmap args_to_skip)
 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP.
 
    Arguments from DECL_ARGUMENTS list can't be removed now, since they are
-   linked by TREE_CHAIN directly.  It is caller responsibility to eliminate
+   linked by TREE_CHAIN directly.  The caller is responsible for eliminating
    them when they are being duplicated (i.e. copy_arguments_for_versioning).  */
 
 tree
@@ -7310,8 +7310,8 @@ build_function_decl_skip_args (tree orig_decl, bitmap args_to_skip)
 }
 
 /* Build a function type.  The RETURN_TYPE is the type returned by the
-   function. If VAARGS is set, no void_type_node is appended to the
-   the list. ARGP muse be alway be terminated be a NULL_TREE.  */
+   function.  If VAARGS is set, no void_type_node is appended to the
+   the list.  ARGP must be always be terminated be a NULL_TREE.  */
 
 static tree
 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)