Commit c7baa145 by Ziemowit Laski Committed by Ziemowit Laski

c-tree.h (struct lang_type): Rename 'objc_protocols' field to 'objc_info'.

[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'.

From-SVN: r91833
parent 6e4d9244
2004-12-07 Ziemowit Laski <zlaski@apple.com>
* c-tree.h (struct lang_type): Rename 'objc_protocols' field
to 'objc_info'.
2004-12-07 Eric Christopher <echristo@redhat.com> 2004-12-07 Eric Christopher <echristo@redhat.com>
PR target/16317 PR target/16317
......
...@@ -73,9 +73,10 @@ struct lang_type GTY(()) ...@@ -73,9 +73,10 @@ struct lang_type GTY(())
/* In an ENUMERAL_TYPE, the min and max values. */ /* In an ENUMERAL_TYPE, the min and max values. */
tree enum_min; tree enum_min;
tree enum_max; tree enum_max;
/* In a RECORD_TYPE, a list of Objective-C protocols that this type /* In a RECORD_TYPE, information specific to Objective-C, such
adopts. This is used only in Objective-C. */ as a list of adopted protocols or a pointer to a corresponding
tree objc_protocols; @interface. See objc/objc-act.h for details. */
tree objc_info;
}; };
/* Record whether a type or decl was written with nonconstant size. /* Record whether a type or decl was written with nonconstant size.
......
2004-12-07 Ziemowit Laski <zlaski@apple.com>
* cp-tree.h (struct lang_type_class): Rename 'objc_protocols'
field to 'objc_info'.
2004-12-07 Kazu Hirata <kazu@cs.umass.edu> 2004-12-07 Kazu Hirata <kazu@cs.umass.edu>
* pt.c: Replace a use of first_rtl_op with TREE_CODE_LENGTH. * pt.c: Replace a use of first_rtl_op with TREE_CODE_LENGTH.
......
...@@ -1062,9 +1062,10 @@ struct lang_type_class GTY(()) ...@@ -1062,9 +1062,10 @@ struct lang_type_class GTY(())
tree decl_list; tree decl_list;
tree template_info; tree template_info;
tree befriending_classes; tree befriending_classes;
/* In a RECORD_TYPE, a list of Objective-C protocols that this type /* In a RECORD_TYPE, information specific to Objective-C++, such
adopts. This is used only in Objective-C++. */ as a list of adopted protocols or a pointer to a corresponding
tree objc_protocols; @interface. See objc/objc-act.h for details. */
tree objc_info;
}; };
struct lang_type_ptrmem GTY(()) struct lang_type_ptrmem GTY(())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment