diff options
author | Dale Johannesen <dalej@apple.com> | 2005-04-13 19:28:31 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@gcc.gnu.org> | 2005-04-13 19:28:31 +0000 |
commit | 43f479d63f975ff0cf56b54ce5fc78e35a6c8d3c (patch) | |
tree | ef7ffb91458818196375fa47f24e3c65567c411e /gcc/objc/objc-act.h | |
parent | f3b2c50692aa4ed501968c09e74fdb4a7474c589 (diff) | |
download | gcc-43f479d63f975ff0cf56b54ce5fc78e35a6c8d3c.zip gcc-43f479d63f975ff0cf56b54ce5fc78e35a6c8d3c.tar.gz gcc-43f479d63f975ff0cf56b54ce5fc78e35a6c8d3c.tar.bz2 |
Make-lang.in (objc-lang.o): Depend on tree-gimple.h.
2005-04-13 Dale Johannesen <dalej@apple.com>
* objc/Make-lang.in (objc-lang.o): Depend on tree-gimple.h.
(objc-act.o): Ditto.
* objc/objc-act.c (objc_gimplify_expr): New.
(objc_get_callee_fndecl): New.
* objc/objc-act.h: Include tree-gimple.h. Declare new functions.
* objc/objc-lang.c (LANG_HOOKS_GIMPLIFY_EXPR): Define.
(LANG_HOOKS_GET_CALLEE_FNDECL): Define.
From-SVN: r98105
Diffstat (limited to 'gcc/objc/objc-act.h')
-rw-r--r-- | gcc/objc/objc-act.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/objc/objc-act.h b/gcc/objc/objc-act.h index 9925d96..4050303 100644 --- a/gcc/objc/objc-act.h +++ b/gcc/objc/objc-act.h @@ -22,13 +22,18 @@ Boston, MA 02111-1307, USA. */ #ifndef GCC_OBJC_ACT_H #define GCC_OBJC_ACT_H +/* For enum gimplify_status */ +#include "tree-gimple.h" + /*** Language hooks ***/ bool objc_init (void); const char *objc_printable_name (tree, int); +tree objc_get_callee_fndecl (tree); void objc_finish_file (void); tree objc_fold_obj_type_ref (tree, tree); int objc_types_compatible_p (tree, tree); +enum gimplify_status objc_gimplify_expr (tree *, tree *, tree *); /* NB: The remaining public functions are prototyped in c-common.h, for the benefit of stub-objc.c and objc-act.c. */ |