diff options
author | Ziemowit Laski <zlaski@apple.com> | 2004-11-02 20:29:21 +0000 |
---|---|---|
committer | Ziemowit Laski <zlaski@gcc.gnu.org> | 2004-11-02 20:29:21 +0000 |
commit | 65958285a0d780258a51b32017ccce33ddd834c6 (patch) | |
tree | 5a4b016e43899a5b48fc6e95881c03a32063597f /gcc/c-objc-common.h | |
parent | bd80bd9b93b62fa5388caac9e7adf33c05de52be (diff) | |
download | gcc-65958285a0d780258a51b32017ccce33ddd834c6.tar.gz |
c-lang.c (LANG_HOOKS_TYPES_COMPATIBLE_P): Remove.
[gcc/ChangeLog]
2004-11-02 Ziemowit Laski <zlaski@apple.com>
* c-lang.c (LANG_HOOKS_TYPES_COMPATIBLE_P): Remove.
(c_types_compatible_p): Move function definition...
* c-objc-common.c (c_types_compatible_p): ...here.
* c-objc-common.h (LANG_HOOKS_TYPES_COMPATIBLE_P): Moved here from
c-lang.c.
[gcc/cp/ChangeLog]
2004-11-02 Ziemowit Laski <zlaski@apple.com>
* cp-lang.c (cxx_types_compatible_p): Remove prototype and definition.
(LANG_HOOKS_TYPES_COMPATIBLE_P): Move to cp-objcp-common.h.
* cp-objcp-common.c (cxx_types_compatible_p): Moved definition here
from cp-lang.c.
* cp-objcp-common.h (cxx_types_compatible_p): Moved prototype here
from cp-lang.c.
(LANG_HOOKS_TYPES_COMPATIBLE_P): Moved here from cp-lang.c.
From-SVN: r89997
Diffstat (limited to 'gcc/c-objc-common.h')
-rw-r--r-- | gcc/c-objc-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/c-objc-common.h b/gcc/c-objc-common.h index 48b22a19d2b..4c7be6327ab 100644 --- a/gcc/c-objc-common.h +++ b/gcc/c-objc-common.h @@ -66,6 +66,8 @@ extern void c_initialize_diagnostics (diagnostic_context *); #define LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL c_warn_unused_global_decl #undef LANG_HOOKS_PRINT_IDENTIFIER #define LANG_HOOKS_PRINT_IDENTIFIER c_print_identifier +#undef LANG_HOOKS_TYPES_COMPATIBLE_P +#define LANG_HOOKS_TYPES_COMPATIBLE_P c_types_compatible_p #undef LANG_HOOKS_FUNCTION_ENTER_NESTED #define LANG_HOOKS_FUNCTION_ENTER_NESTED c_push_function_context #undef LANG_HOOKS_FUNCTION_LEAVE_NESTED |