diff options
author | Ziemowit Laski <zlaski@apple.com> | 2003-09-25 01:26:01 +0000 |
---|---|---|
committer | Ziemowit Laski <zlaski@gcc.gnu.org> | 2003-09-25 01:26:01 +0000 |
commit | 264fa2db22ce7cf50ebb108edb097acf0c9f2a57 (patch) | |
tree | 1052b4d25cc404c17e6402e22b8183026f4d4263 /gcc/c-lang.c | |
parent | 3b6fdb2fa04453ebf17ec1dfd3ef62b413442430 (diff) | |
download | gcc-264fa2db22ce7cf50ebb108edb097acf0c9f2a57.zip gcc-264fa2db22ce7cf50ebb108edb097acf0c9f2a57.tar.gz gcc-264fa2db22ce7cf50ebb108edb097acf0c9f2a57.tar.bz2 |
MERGE OF objc-improvements-branch into MAINLINE.
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.
From-SVN: r71748
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 a6a4ede..1a097e2 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" |