Home
last modified time | relevance | path

Searched refs:objc_inherit_code (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dc-parse.in316 static enum tree_code objc_inherit_code;
2962 { objc_inherit_code = CLASS_METHOD_DECL; }
2964 { objc_inherit_code = INSTANCE_METHOD_DECL; }
2977 if (objc_inherit_code == CLASS_METHOD_DECL)
3024 if (objc_inherit_code == CLASS_METHOD_DECL)
3035 $$ = build_method_decl (objc_inherit_code, $2, $4, NULL_TREE);
3040 $$ = build_method_decl (objc_inherit_code, NULL_TREE, $1, NULL_TREE);
3045 $$ = build_method_decl (objc_inherit_code, $2, $4, $5);
3050 $$ = build_method_decl (objc_inherit_code, NULL_TREE, $1, $2);
H A DChangeLog.69376 * c-parse.in (objc_inherit_code, objc_pq_context,
/openbsd-src/gnu/gcc/gcc/objc/
H A Dobjc-act.h181 extern GTY(()) enum tree_code objc_inherit_code;
H A Dobjc-act.c365 enum tree_code objc_inherit_code; variable
721 objc_inherit_code = (type == PLUS_EXPR in objc_set_method_type()
730 return build_method_decl (objc_inherit_code, rettype, selector, in objc_build_method_signature()
742 objc_inherit_code == CLASS_METHOD_DECL); in objc_add_method_declaration()
753 objc_inherit_code == CLASS_METHOD_DECL); in objc_start_method_definition()
H A DChangeLog646 (objc_inherit_code, objc_public_flag): New, moved from c-parse.in.