diff options
author | zlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-25 01:26:01 +0000 |
---|---|---|
committer | zlaski <zlaski@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-25 01:26:01 +0000 |
commit | c17b85eafa482aa4b14b5c81bac7a471e41393c7 (patch) | |
tree | 1052b4d25cc404c17e6402e22b8183026f4d4263 /gcc/c-lang.c | |
parent | 8024827507976fce5cbedb575703ee4aa1f12809 (diff) | |
download | gcc-c17b85eafa482aa4b14b5c81bac7a471e41393c7.tar.gz |
2003-09-24 Ziemowit Laski <zlaski@apple.com>
MERGE OF objc-improvements-branch into MAINLINE.
See 'gcc/ChangeLog' and 'gcc/testsuite/ChangeLog' for
the gory details.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71748 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r-- | gcc/c-lang.c | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c index a6a4ede30ed..1a097e27797 100644 --- a/gcc/c-lang.c +++ b/gcc/c-lang.c @@ -179,52 +179,6 @@ const char *const tree_code_name[] = { }; #undef DEFTREECODE -/* Used by c-lex.c, but only for objc. */ - -tree -lookup_interface (tree arg ATTRIBUTE_UNUSED) -{ - return 0; -} - -tree -is_class_name (tree arg ATTRIBUTE_UNUSED) -{ - return 0; -} - -tree -objc_is_id (tree arg ATTRIBUTE_UNUSED) -{ - return 0; -} - -void -objc_check_decl (tree decl ATTRIBUTE_UNUSED) -{ -} - -int -objc_comptypes (tree lhs ATTRIBUTE_UNUSED, tree rhs ATTRIBUTE_UNUSED, - int reflexive ATTRIBUTE_UNUSED) -{ - return -1; -} - -tree -objc_message_selector (void) -{ - return 0; -} - -/* Used by c-typeck.c (build_external_ref), but only for objc. */ - -tree -lookup_objc_ivar (tree id ATTRIBUTE_UNUSED) -{ - return 0; -} - void finish_file (void) { @@ -244,5 +198,4 @@ c_initialize_diagnostics (diagnostic_context *context) free (base); } - #include "gtype-c.h" |