summaryrefslogtreecommitdiff
path: root/gcc/c-tree.h
diff options
context:
space:
mode:
authorzlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-07 23:46:11 +0000
committerzlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-07 23:46:11 +0000
commit2cf10c572dd3b9569ee6f789d1fbbce7515384d2 (patch)
treeee1a82bd11c80d04bbe6f2fd8ac159980134d7e9 /gcc/c-tree.h
parent334f03a14c7ab0d59aac53345679b1f9f0c6242b (diff)
downloadgcc-2cf10c572dd3b9569ee6f789d1fbbce7515384d2.tar.gz
[gcc/ChangeLog]
2004-12-07 Ziemowit Laski <zlaski@apple.com> * c-tree.h (struct lang_type): Rename 'objc_protocols' field to 'objc_info'. [gcc/cp/ChangeLog] 2004-12-07 Ziemowit Laski <zlaski@apple.com> * cp-tree.h (struct lang_type_class): Rename 'objc_protocols' field to 'objc_info'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91833 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r--gcc/c-tree.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h
index 21640ea6c88..5415ee079b6 100644
--- a/gcc/c-tree.h
+++ b/gcc/c-tree.h
@@ -73,9 +73,10 @@ struct lang_type GTY(())
/* In an ENUMERAL_TYPE, the min and max values. */
tree enum_min;
tree enum_max;
- /* In a RECORD_TYPE, a list of Objective-C protocols that this type
- adopts. This is used only in Objective-C. */
- tree objc_protocols;
+ /* In a RECORD_TYPE, information specific to Objective-C, such
+ as a list of adopted protocols or a pointer to a corresponding
+ @interface. See objc/objc-act.h for details. */
+ tree objc_info;
};
/* Record whether a type or decl was written with nonconstant size.