aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/doc')
-rw-r--r--gcc/doc/extend.texi7
-rw-r--r--gcc/doc/install.texi17
2 files changed, 10 insertions, 14 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index fb117f5..882c082 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -6896,15 +6896,14 @@ compiler checks for @code{nocf_check} attribute mismatch and reports
a warning in case of mismatch.
@smallexample
-@{
-int foo (void) __attribute__(nocf_check);
-void (*foo1)(void) __attribute__(nocf_check);
+int foo (void) __attribute__((nocf_check));
+void (*foo1)(void) __attribute__((nocf_check));
void (*foo2)(void);
/* foo's address is assumed to be valid. */
int
foo (void)
-
+@{
/* This call site is not checked for control-flow
validity. */
(*foo1)();
diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi
index 576b7ee..50cefa1 100644
--- a/gcc/doc/install.texi
+++ b/gcc/doc/install.texi
@@ -304,17 +304,14 @@ mdoc. GNU groff is required to convert them to PDF format. Conversion
to HTML is done with mandoc, available at
@uref{https://mandoc.bsd.lv}.
+The COBOL runtime library. libgcobol, requires libxml2 2.9 or later.
+It implements support for @code{XML PARSE}.
+
Because ISO COBOL defines strict requirements for numerical precision,
-gcobol requires hardware with 128-bit computation instructions. This
-requirement applies to both host and target. For integer and
-fixed-point computation, gcobol uses
-@deftp {Data type} __int128
-@end deftp
-meaning @code{16 == sizeof(long long int)}.
-For floating point, gcobol uses
-@deftp {Data type} _Float128
-@end deftp
-(On some architectures, GCC supports 128-bit floating point in software.)
+gcobol computes with 128-bit operands. This requirement applies to
+both host and target. For integers, gcobol requires the platform to
+support the GCC @code{__int128} type. For floating point it uses
+@code{_Float128} or similar.
gcobol has so far been tested on two architectures only: x86_64 and
aarch64 with little-endian encoding.