Commit a604ca26 by Tom Wood

(is_class_name, maybe_objc_method_name,

	build_objc_string): New functions.

From-SVN: r4066
parent abe31bf8
...@@ -53,7 +53,13 @@ lang_identify () ...@@ -53,7 +53,13 @@ lang_identify ()
return "c"; return "c";
} }
void
print_lang_statistics ()
{
}
/* Used by c-lex.c, but only for objc. */ /* Used by c-lex.c, but only for objc. */
tree tree
lookup_interface (arg) lookup_interface (arg)
tree arg; tree arg;
...@@ -61,6 +67,13 @@ lookup_interface (arg) ...@@ -61,6 +67,13 @@ lookup_interface (arg)
return 0; return 0;
} }
tree
is_class_name (arg)
tree arg;
{
return 0;
}
void void
maybe_objc_check_decl (decl) maybe_objc_check_decl (decl)
tree decl; tree decl;
...@@ -68,8 +81,16 @@ maybe_objc_check_decl (decl) ...@@ -68,8 +81,16 @@ maybe_objc_check_decl (decl)
} }
int int
maybe_objc_comptypes (lhs, rhs) maybe_objc_comptypes (lhs, rhs, reflexive)
tree lhs, rhs; tree lhs, rhs;
int reflexive;
{
return 2;
}
tree
maybe_objc_method_name (decl)
tree decl;
{ {
return 0; return 0;
} }
...@@ -86,9 +107,13 @@ recognize_objc_keyword () ...@@ -86,9 +107,13 @@ recognize_objc_keyword ()
return 0; return 0;
} }
void tree
print_lang_statistics () build_objc_string (len, str)
int len;
char *str;
{ {
abort ();
return NULL_TREE;
} }
void void
......
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