From: Jim Wilson Date: Mon, 24 Aug 1998 19:46:49 +0000 (+0000) Subject: * tree.def (DECL_RESULT): Correct documentation. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dce2e8c098ab361dd55940ce75ed653fadffc690;p=gcc.git * tree.def (DECL_RESULT): Correct documentation. From-SVN: r21954 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 254f1b94b3f..f14ad3e0678 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Aug 24 19:45:40 1998 Jim Wilson + + * tree.def (DECL_RESULT): Correct documentation. + Tue Aug 25 01:15:27 1998 J"orn Rennecke * reload1.c (reload_reg_free_before_p): New argument EQUIV; Changed diff --git a/gcc/tree.def b/gcc/tree.def index c434dbbf38f..86b60fa12a8 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -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.