diff options
Diffstat (limited to 'gcc/doc/extend.texi')
-rw-r--r-- | gcc/doc/extend.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index c974d5206cc..5c74b840131 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -5438,6 +5438,7 @@ should be called and the @var{flag} argument passed to it. @section Other built-in functions provided by GCC @cindex built-in functions @findex __builtin_isfinite +@findex __builtin_isnormal @findex __builtin_isgreater @findex __builtin_isgreaterequal @findex __builtin_isless @@ -5966,8 +5967,8 @@ the same names as the standard macros ( @code{isgreater}, @code{islessgreater}, and @code{isunordered}) , with @code{__builtin_} prefixed. We intend for a library implementor to be able to simply @code{#define} each standard macro to its built-in equivalent. -In the same fashion, GCC provides an @code{isfinite} built-in used -with @code{__builtin_} prefixed. +In the same fashion, GCC provides @code{isfinite} and @code{isnormal} +built-ins used with @code{__builtin_} prefixed. @deftypefn {Built-in Function} int __builtin_types_compatible_p (@var{type1}, @var{type2}) |