diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-28 20:22:58 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-28 20:22:58 +0000 |
commit | 80d4c05f76e0073a56d14287151cb29929a7ba63 (patch) | |
tree | d1265a7f21fa36333e53d93d90b783011f0aed2f /gcc/doc/tm.texi | |
parent | 06bedae0473d8cbcc76725a6f7a7d052f58cd456 (diff) | |
download | gcc-80d4c05f76e0073a56d14287151cb29929a7ba63.tar.gz |
* target.def (use_blocks_for_decl_p): New hook.
* varasm.c (use_blocks_for_decl_p): Apply hook as final condition.
* doc/tm.texi.in (USE_BLOCKS_FOR_DECL_P): New description.
* doc/tm.texi: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193906 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/tm.texi')
-rw-r--r-- | gcc/doc/tm.texi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index ef47b1434a1..f98196434f8 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -5654,6 +5654,13 @@ of @var{x}. The default version returns false for all constants. @end deftypefn +@deftypefn {Target Hook} bool TARGET_USE_BLOCKS_FOR_DECL_P (const_tree @var{decl}) +This hook should return true if pool entries for @var{decl} should +be placed in an @code{object_block} structure. + +The default version returns true for all decls. +@end deftypefn + @deftypefn {Target Hook} tree TARGET_BUILTIN_RECIPROCAL (unsigned @var{fn}, bool @var{md_fn}, bool @var{sqrt}) This hook should return the DECL of a function that implements reciprocal of the builtin function with builtin function code @var{fn}, or |