diff options
author | Alexander Malmberg <alexander@malmberg.org> | 2005-01-25 03:13:10 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2005-01-24 19:13:10 -0800 |
commit | 3f16185feb0636509d9f865e624c4c3712273cc4 (patch) | |
tree | 38df44a09f1d032b7868951f4c41192154178ce9 /gcc/objc/objc-act.h | |
parent | a6d2976a97625bea66e80fb63384a68ab79983ae (diff) | |
download | gcc-3f16185feb0636509d9f865e624c4c3712273cc4.zip gcc-3f16185feb0636509d9f865e624c4c3712273cc4.tar.gz gcc-3f16185feb0636509d9f865e624c4c3712273cc4.tar.bz2 |
re PR objc/18408 (ICE compiling code that involves casting classes)
2005-01-25 Alexander Malmberg <alexander@malmberg.org>
PR objc/18408
* objc-act.c (objc_types_compatible_p): New function.
* objc-act.h (objc_types_compatible_p): Declare.
* objc-lang.c (LANG_HOOKS_TYPES_COMPATIBLE_P): Define.
From-SVN: r94199
Diffstat (limited to 'gcc/objc/objc-act.h')
-rw-r--r-- | gcc/objc/objc-act.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/objc/objc-act.h b/gcc/objc/objc-act.h index e52e0f0..403c31b 100644 --- a/gcc/objc/objc-act.h +++ b/gcc/objc/objc-act.h @@ -28,6 +28,7 @@ bool objc_init (void); const char *objc_printable_name (tree, int); void objc_finish_file (void); tree objc_fold_obj_type_ref (tree, tree); +int objc_types_compatible_p (tree, tree); /* NB: The remaining public functions are prototyped in c-common.h, for the benefit of stub-objc.c and objc-act.c. */ |