diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-02 08:56:05 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-02 08:56:05 +0000 |
commit | de9fc4cf4d4dc3809a20f47ec1d62c91f15f1ded (patch) | |
tree | 1983dece615636dd04167652d87842ee6804eeae /gcc/langhooks-def.h | |
parent | 1a3ad0f6d430e363bdb3afeacaf7efcb33166e67 (diff) | |
download | gcc-de9fc4cf4d4dc3809a20f47ec1d62c91f15f1ded.tar.gz |
* langhooks-def.h (LANG_HOOKS_RTL_EXPAND_STMT): Cast properly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70993 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/langhooks-def.h')
-rw-r--r-- | gcc/langhooks-def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/langhooks-def.h b/gcc/langhooks-def.h index ee30749f536..f5a83ccf9e5 100644 --- a/gcc/langhooks-def.h +++ b/gcc/langhooks-def.h @@ -124,7 +124,7 @@ extern void lhd_initialize_diagnostics (struct diagnostic_context *); #define LANG_HOOKS_FUNCTION_LEAVE_NESTED lhd_do_nothing_f #define LANG_HOOKS_RTL_EXPAND_START lhd_do_nothing -#define LANG_HOOKS_RTL_EXPAND_STMT (void *) abort +#define LANG_HOOKS_RTL_EXPAND_STMT (void (*) (tree)) abort #define LANG_HOOKS_RTL_EXPAND_END lhd_do_nothing /* Attribute hooks. */ |