diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-18 01:29:16 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-18 01:29:16 +0000 |
commit | 4b2f1f8340e61fe4004f8d7a4ec0e6e7765a76c6 (patch) | |
tree | ddbfe9d81523f6d613e8826a42e93aee97f771c7 /gcc/tree.def | |
parent | da72c08324c5eadcc5451ced9fc0a6c80f186517 (diff) | |
download | gcc-4b2f1f8340e61fe4004f8d7a4ec0e6e7765a76c6.tar.gz |
Fix confusing comment typo reported by Rafael Espindola.
* tree.def (FUNCTION_DECL): Correct typo in comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107155 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index c1348aac8b5..84d76c46533 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -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 |