diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-06 12:21:49 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-06 12:21:49 +0000 |
commit | 2a1e968fdc5abfc5e81ebbcada133842c645103b (patch) | |
tree | 4fdd188efeaa27171dc27739a7d0534a0df96a6e /gcc/cp/cp-tree.def | |
parent | e4b6f354d7455d734f09e5fbc61b3401a08a2aca (diff) | |
download | gcc-2a1e968fdc5abfc5e81ebbcada133842c645103b.tar.gz |
2001-07-06 Ira Ruben <ira@apple.com>
* cp-tree.def (TEMPLATE_DECL): Update comment. DECL_RESULT should
be DECL_TEMPLATE_RESULT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43807 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/cp-tree.def')
-rw-r--r-- | gcc/cp/cp-tree.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/cp-tree.def b/gcc/cp/cp-tree.def index 62f26326988..e7ef2b9dca7 100644 --- a/gcc/cp/cp-tree.def +++ b/gcc/cp/cp-tree.def @@ -84,10 +84,10 @@ DEFTREECODE (EMPTY_CLASS_EXPR, "empty_class_expr", 'e', 0) only done for functions so far For class template: DECL_INITIAL associated templates (methods &c) - DECL_RESULT null + DECL_TEMPLATE_RESULT null For non-class templates: TREE_TYPE type of object to be constructed - DECL_RESULT decl for object to be created + DECL_TEMPLATE_RESULT decl for object to be created (e.g., FUNCTION_DECL with tmpl parms used) */ DEFTREECODE (TEMPLATE_DECL, "template_decl", 'd', 0) |