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