OSDN Git Service

* tree.def (DECL_RESULT): Correct documentation.
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Aug 1998 19:46:49 +0000 (19:46 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Aug 1998 19:46:49 +0000 (19:46 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21954 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree.def

index 254f1b9..f14ad3e 100644 (file)
@@ -1,3 +1,7 @@
+Mon Aug 24 19:45:40 1998  Jim Wilson  <wilson@cygnus.com>
+
+       * tree.def (DECL_RESULT): Correct documentation.
+
 Tue Aug 25 01:15:27 1998  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * reload1.c (reload_reg_free_before_p): New argument EQUIV;  Changed
index c434dbb..86b60fa 100644 (file)
@@ -306,11 +306,10 @@ DEFTREECODE (STRING_CST, "string_cst", 'c', 3)
    DECL_RESULT holds a RESULT_DECL node for the value of a function,
     or it is 0 for a function that returns no value.
     (C functions returning void have zero here.)
-   DECL_RESULT_TYPE holds the type in which the result is actually
-    returned.  This is usually the same as the type of DECL_RESULT,
-    but (1) it may be a wider integer type and
-    (2) it remains valid, for the sake of inlining, even after the
-    function's compilation is done.
+    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
+    FUNCTION_DECL, but it may be a wider integer type because of
+    promotion.
    DECL_FUNCTION_CODE is a code number that is nonzero for
     built-in functions.  Its value is an enum built_in_function
     that says which built-in function it is.