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@gcc.gnu.org>2004-12-07 03:52:22 +0000
commit66237a39fc4203ca59c5ed1fe69d3cf78a4a5001 (patch)
tree48cec15d7f50dd704982ca8a4ff045b61e9593ff /gcc/c-tree.h
parente11ab33b76c14a58124dbd71991c0adeea736d9b (diff)
downloadgcc-66237a39fc4203ca59c5ed1fe69d3cf78a4a5001.zip
gcc-66237a39fc4203ca59c5ed1fe69d3cf78a4a5001.tar.gz
gcc-66237a39fc4203ca59c5ed1fe69d3cf78a4a5001.tar.bz2
c-tree.h (struct lang_type): Add 'objc_protocols' field.
[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. From-SVN: r91803
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 5db3c09..21640ea 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.