diff options
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r-- | gcc/c-tree.h | 7 |
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. |