aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-tree.h
diff options
context:
space:
mode:
authorZiemowit Laski <zlaski@apple.com>2004-12-07 03:52:22 +0000
committerZiemowit Laski <zlaski@apple.com>2004-12-07 03:52:22 +0000
commite3205a576f7ed378aabfa44a77117c71f116434f (patch)
tree48cec15d7f50dd704982ca8a4ff045b61e9593ff /gcc/c-tree.h
parentf310aff0843cd2ad8f92624cb8a1821a3f01fccd (diff)
[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: https://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.h3
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.