diff options
author | zlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-07 03:52:22 +0000 |
---|---|---|
committer | zlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-07 03:52:22 +0000 |
commit | 11922e445682992f098967ee879101cab66f6000 (patch) | |
tree | 48cec15d7f50dd704982ca8a4ff045b61e9593ff /gcc/c-tree.h | |
parent | 8f3b70dd80454ab00aa443d4adcdf9b239c02b94 (diff) | |
download | gcc-11922e445682992f098967ee879101cab66f6000.tar.gz |
[gcc/ChangeLog]
2004-12-06 Ziemowit Laski <zlaski@apple.com>
* c-tree.h (struct lang_type): Add 'objc_protocols' field.
[gcc/cp/ChangeLog]
2004-12-06 Ziemowit Laski <zlaski@apple.com>
* cp-tree.h (struct lang_type_class): Add 'objc_protocols' field.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91803 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r-- | gcc/c-tree.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h index 5db3c091a50..21640ea6c88 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -73,6 +73,9 @@ 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; }; /* Record whether a type or decl was written with nonconstant size. |