Improve documentation of target hooks for libc functions
authorJonathan Wakely <jwakely@redhat.com>
Tue, 13 Aug 2019 16:21:51 +0000 (17:21 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Tue, 13 Aug 2019 16:21:51 +0000 (17:21 +0100)
* target.def (libc_has_function, libc_has_fast_function): Improve
documentation strings.
* doc/tm.texi: Regenerate.

From-SVN: r274387

gcc/ChangeLog
gcc/doc/tm.texi
gcc/target.def

index 573c77941304c0008f64da4262bb6c0160c1f5c2..5e699b10569c11024ad0d6b191297ef970c08bab 100644 (file)
@@ -1,3 +1,9 @@
+2019-08-13  Jonathan Wakely  <jwakely@redhat.com>
+
+       * target.def (libc_has_function, libc_has_fast_function): Improve
+       documentation strings.
+       * doc/tm.texi: Regenerate.
+
 2019-08-13  Caroline Tice  <cmtice@google.com>
 
        PR other/91396
index 8e5b01c93830f8d4d2df884a409d8e70c0fcf851..89990cbc871bf2250c19fe9aebbcd89f1f06c36b 100644 (file)
@@ -5591,12 +5591,12 @@ macro, a reasonable default is used.
 
 @deftypefn {Target Hook} bool TARGET_LIBC_HAS_FUNCTION (enum function_class @var{fn_class})
 This hook determines whether a function from a class of functions
-@var{fn_class} is present at the runtime.
+@var{fn_class} is present in the target C library.
 @end deftypefn
 
 @deftypefn {Target Hook} bool TARGET_LIBC_HAS_FAST_FUNCTION (int @var{fcode})
 This hook determines whether a function from a class of functions
-@var{fn_class} has a fast implementation.
+@code{(enum function_class)}@var{fcode} has a fast implementation.
 @end deftypefn
 
 @defmac NEXT_OBJC_RUNTIME
index 7cc0f37a0d17d095a8b970281336e53eca1e0420..73334e0e8fc038a3b4d70bcaf81872c44df3269c 100644 (file)
@@ -2545,14 +2545,14 @@ set via @code{__attribute__}.",
 DEFHOOK
 (libc_has_function,
  "This hook determines whether a function from a class of functions\n\
-@var{fn_class} is present at the runtime.",
+@var{fn_class} is present in the target C library.",
  bool, (enum function_class fn_class),
  default_libc_has_function)
 
 DEFHOOK
 (libc_has_fast_function,
  "This hook determines whether a function from a class of functions\n\
-@var{fn_class} has a fast implementation.",
+@code{(enum function_class)}@var{fcode} has a fast implementation.",
  bool, (int fcode),
  default_libc_has_fast_function)