Commit be1bbc41 by Ziemowit Laski Committed by Ziemowit Laski

objc-act.c (lookup_category): Mark as 'inline'.

2003-10-03  Ziemowit Laski  <zlaski@apple.com>

        * objc/objc-act.c (lookup_category): Mark as 'inline'.

From-SVN: r72081
parent 81ff723b
2003-10-03 Ziemowit Laski <zlaski@apple.com>
* objc/objc-act.c (lookup_category): Mark as 'inline'.
2003-10-03 Alexander Malmberg <alexander@malmberg.org> 2003-10-03 Alexander Malmberg <alexander@malmberg.org>
Ziemowit Laski <zlaski@apple.com> Ziemowit Laski <zlaski@apple.com>
......
...@@ -187,7 +187,7 @@ static tree lookup_method_static (tree, tree, int); ...@@ -187,7 +187,7 @@ static tree lookup_method_static (tree, tree, int);
static void add_method_to_hash_list (hash *, tree); static void add_method_to_hash_list (hash *, tree);
static tree add_class (tree); static tree add_class (tree);
static void add_category (tree, tree); static void add_category (tree, tree);
static tree lookup_category (tree, tree); static inline tree lookup_category (tree, tree);
enum string_section enum string_section
{ {
...@@ -5068,7 +5068,7 @@ build_shared_structure_initializer (tree type, tree isa, tree super, ...@@ -5068,7 +5068,7 @@ build_shared_structure_initializer (tree type, tree isa, tree super,
/* Retrieve category interface CAT_NAME (if any) associated with CLASS. */ /* Retrieve category interface CAT_NAME (if any) associated with CLASS. */
static tree static inline tree
lookup_category (tree class, tree cat_name) lookup_category (tree class, tree cat_name)
{ {
tree category = CLASS_CATEGORY_LIST (class); tree category = CLASS_CATEGORY_LIST (class);
......
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