diff options
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/tm.texi | 7 | ||||
-rw-r--r-- | gcc/doc/tm.texi.in | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index ef47b14..f981964 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 diff --git a/gcc/doc/tm.texi.in b/gcc/doc/tm.texi.in index f3945a4..7a93f21 100644 --- a/gcc/doc/tm.texi.in +++ b/gcc/doc/tm.texi.in @@ -5570,6 +5570,13 @@ of @var{x}. The default version returns false for all constants. @end deftypefn +@hook TARGET_USE_BLOCKS_FOR_DECL_P +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 + @hook TARGET_BUILTIN_RECIPROCAL This hook should return the DECL of a function that implements reciprocal of the builtin function with builtin function code @var{fn}, or |