]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix confusing comment typo reported by Rafael Espindola.
authorJames E Wilson <wilson@specifixinc.com>
Fri, 18 Nov 2005 01:29:16 +0000 (17:29 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Fri, 18 Nov 2005 01:29:16 +0000 (17:29 -0800)
* tree.def (FUNCTION_DECL): Correct typo in comment.

From-SVN: r107155

gcc/ChangeLog
gcc/tree.def

index ca612fb0fe624e91f3d1f5677981f5d8d142f9dc..1f7394e278c90786c95c218f2407b50c168fc59e 100644 (file)
@@ -1,3 +1,7 @@
+2005-11-17  James E Wilson  <wilson@specifix.com>
+
+       * tree.def (FUNCTION_DECL): Correct typo in comment.
+
 2005-11-17  Richard Henderson  <rth@redhat.com>
 
        * dwarf2out.c (dw_cfi_oprnd_struct): Reduce dw_cfi_reg_num to int.
index c1348aac8b587e2ea382c331b81ff6c21f7094d1..84d76c46533033bb9a140e11b3e6c8a593447439 100644 (file)
@@ -326,8 +326,8 @@ DEFTREECODE (STRING_CST, "string_cst", tcc_constant, 0)
 
    FUNCTION_DECLs use four special fields:
    DECL_ARGUMENTS holds a chain of PARM_DECL nodes for the arguments.
-   DECL_RESULT holds a RESULT_DECL node for the value of a function,
-    or it is 0 for a function that returns no value.
+   DECL_RESULT holds a RESULT_DECL node for the value of a function.
+    The DECL_RTL field is 0 for a function that returns no value.
     (C functions returning void have zero here.)
     The TREE_TYPE field is the type in which the result is actually
     returned.  This is usually the same as the return type of the