diff options
| author | wood <wood@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-04-09 23:11:34 +0000 |
|---|---|---|
| committer | wood <wood@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-04-09 23:11:34 +0000 |
| commit | 6c493ce1eb2079dff3878e68ecc2ddd14293ccfc (patch) | |
| tree | 925a0e69239482c45d393d959cca37569dd9d8fd /gcc/c-lang.c | |
| parent | 7380f63c5d0ec27a0c00646b9874423427d71591 (diff) | |
| download | ppe42-gcc-6c493ce1eb2079dff3878e68ecc2ddd14293ccfc.tar.gz ppe42-gcc-6c493ce1eb2079dff3878e68ecc2ddd14293ccfc.zip | |
(is_class_name, maybe_objc_method_name,
build_objc_string): New functions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4066 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lang.c')
| -rw-r--r-- | gcc/c-lang.c | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c index fe4acab9f83..a6c9bcdd4a2 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 |

