aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-lang.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r--gcc/c-lang.c31
1 files changed, 28 insertions, 3 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c
index fe4acab..a6c9bcd 100644
--- a/gcc/c-lang.c
+++ b/gcc/c-lang.c
@@ -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