aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-lang.c
diff options
context:
space:
mode:
authorTom Wood <wood@gnu.org>1993-04-09 23:11:34 +0000
committerTom Wood <wood@gnu.org>1993-04-09 23:11:34 +0000
commita604ca2693ddad05591634f0d298e4581c150649 (patch)
tree925a0e69239482c45d393d959cca37569dd9d8fd /gcc/c-lang.c
parentabe31bf86e0602e69677eb3e92f760fd5de9ee31 (diff)
downloadgcc-a604ca2693ddad05591634f0d298e4581c150649.zip
gcc-a604ca2693ddad05591634f0d298e4581c150649.tar.gz
gcc-a604ca2693ddad05591634f0d298e4581c150649.tar.bz2
(is_class_name, maybe_objc_method_name,
build_objc_string): New functions. From-SVN: r4066
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