diff options
author | Richard Guenther <rguenther@suse.de> | 2009-09-01 08:38:10 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2009-09-01 08:38:10 +0000 |
commit | 58f986ca91089e045b33129a6525bc0e399431e5 (patch) | |
tree | 7b75c3f77fdca843c801160365568addd7ee492a /gcc/langhooks.h | |
parent | 5fa162c0d1065408634dd5df4a58407f35109b4d (diff) | |
download | gcc-58f986ca91089e045b33129a6525bc0e399431e5.tar.gz |
tree-flow.h (mark_addressable): Move declaration ...
2009-09-01 Richard Guenther <rguenther@suse.de>
* tree-flow.h (mark_addressable): Move declaration ...
* tree.h (mark_addressable): ... here.
* stmt.c (expand_asm_operands): Use mark_addressable, not
lang_hooks.mark_addressable.
* langhooks-def.h (LANG_HOOKS_INITIALIZER): Remove
LANG_HOOKS_MARK_ADDRESSABLE.
* langhooks.h (struct lang_hooks): Remove mark_addressable langhook.
* c-objc-common.h (LANG_HOOKS_MARK_ADDRESSABLE): Remove.
ada/
* gcc-interface/misc.c (LANG_HOOKS_MARK_ADDRESSABLE): Remove.
cp/
* cp-objcp-common.h (LANG_HOOKS_MARK_ADDRESSABLE): Remove.
fortran/
* f95-lang.c (gfc_mark_addressable): Remove.
(LANG_HOOKS_MARK_ADDRESSABLE): Likewise.
java/
* lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Remove.
* java-tree.h (java_mark_addressable): Likewise.
* typeck.c (java_mark_addressable): Likewise.
From-SVN: r151260
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r-- | gcc/langhooks.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h index d708bb2f867..4a590dea504 100644 --- a/gcc/langhooks.h +++ b/gcc/langhooks.h @@ -298,11 +298,6 @@ struct lang_hooks compilation. Default hook is does nothing. */ void (*finish_incomplete_decl) (tree); - /* Mark EXP saying that we need to be able to take the address of - it; it should not be allocated in a register. Return true if - successful. */ - bool (*mark_addressable) (tree); - /* Replace the DECL_LANG_SPECIFIC data, which may be NULL, of the DECL_NODE with a newly GC-allocated copy. */ void (*dup_lang_specific_decl) (tree); |