diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2011-09-26 08:50:16 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2011-09-26 08:50:16 +0000 |
commit | 7d76717db858244602657e6db4920115dae77e3e (patch) | |
tree | 692b0cdcd46705bd088e9c37ce0567309de053f6 /gcc/ada/gcc-interface/gigi.h | |
parent | 42acad07c083eb1a0de24a8050febac46e3ae0fa (diff) | |
download | gcc-7d76717db858244602657e6db4920115dae77e3e.zip gcc-7d76717db858244602657e6db4920115dae77e3e.tar.gz gcc-7d76717db858244602657e6db4920115dae77e3e.tar.bz2 |
gigi.h (create_subprog_decl): Replace TREE_CHAIN with DECL_CHAIN in comment.
* gcc-interface/gigi.h (create_subprog_decl): Replace TREE_CHAIN with
DECL_CHAIN in comment.
* gcc-interface/trans.c (gigi): Likewise.
(Attribute_to_gnu): Likewise.
(build_function_stub): Likewise.
(gnat_to_gnu): Likewise.
* gcc-interface/utils.c (create_subprog_decl): Likewise.
(convert_vms_descriptor64): Likewise.
(convert_vms_descriptor32): Likewise.
From-SVN: r179185
Diffstat (limited to 'gcc/ada/gcc-interface/gigi.h')
-rw-r--r-- | gcc/ada/gcc-interface/gigi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/gcc-interface/gigi.h b/gcc/ada/gcc-interface/gigi.h index 2614eb2..30fa99e 100644 --- a/gcc/ada/gcc-interface/gigi.h +++ b/gcc/ada/gcc-interface/gigi.h @@ -671,7 +671,7 @@ extern tree create_label_decl (tree label_name); /* Return a FUNCTION_DECL node. SUBPROG_NAME is the name of the subprogram, ASM_NAME is its assembler name, SUBPROG_TYPE is its type (a FUNCTION_TYPE node), PARAM_DECL_LIST is the list of the subprogram arguments (a list of - PARM_DECL nodes chained through the TREE_CHAIN field). + PARM_DECL nodes chained through the DECL_CHAIN field). INLINE_FLAG, PUBLIC_FLAG, EXTERN_FLAG, ARTIFICIAL_FLAG and ATTR_LIST are used to set the appropriate fields in the FUNCTION_DECL. GNAT_NODE is |