From 9c49dafbeb2c01304f3728df111bdf17441f81a7 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Tue, 16 Nov 2021 16:43:33 +0100 Subject: First update for release 3.10 --- doc/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/index.html b/doc/index.html index c3912cb2..857457cb 100644 --- a/doc/index.html +++ b/doc/index.html @@ -25,7 +25,7 @@ a:active {color : Red; text-decoration : underline; }

The CompCert verified compiler

Commented Coq development

-

Version 3.9, 2021-05-10

+

Version 3.10, 2021-11-19

Introduction

-- cgit From 251df98b77d53143efb99e754fdb11d7c8ba286e Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Wed, 17 Nov 2021 13:11:26 +0100 Subject: Remove documentation of bitfield language support option. --- doc/ccomp.1 | 5 ----- 1 file changed, 5 deletions(-) (limited to 'doc') diff --git a/doc/ccomp.1 b/doc/ccomp.1 index 89e8c823..3b1ec4ed 100644 --- a/doc/ccomp.1 +++ b/doc/ccomp.1 @@ -327,11 +327,6 @@ Language Support Options .INDENT 0.0 . .TP -.BR \-fbitfields ", " \-fno\-bitfields -Turn on/off support for emulation bit fields in structs. -Disabled by default. -. -.TP .BR \-flongdouble ", " \-fno\-longdouble Turn on/off support for emulation of \fBlong double\fP as \fBdouble\fP. Disabled by default. -- cgit From 2198a280b1150a61be1e514f044da03e69a66af9 Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Wed, 17 Nov 2021 14:03:22 +0100 Subject: mention AArch64 in man-page --- doc/ccomp.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ccomp.1 b/doc/ccomp.1 index 3b1ec4ed..edae57e1 100644 --- a/doc/ccomp.1 +++ b/doc/ccomp.1 @@ -9,7 +9,7 @@ ccomp \- the CompCert C compiler \fBCompCert C\fP is a compiler for the C programming language. Its intended use is the compilation of life-critical and mission-critical software written in C and meeting high levels of assurance. It accepts most of the ISO C 99 language, with some exceptions and a few extensions. -It produces machine code for the PowerPC (32bit), ARM (32bit), x86 (32bit and 64bit), and RISC-V (32bit and 64bit) architectures. +It produces machine code for the PowerPC (32bit), ARM (32bit), AArch64 (ARM 64bit), x86 (32bit and 64bit), and RISC-V (32bit and 64bit) architectures. .PP What sets CompCert C apart from any other production compiler, is that it is formally verified, using machine-assisted mathematical proofs, to be exempt from miscompilation issues. In other words, the executable code it produces is proved to behave exactly as specified by the semantics of the source C program. -- cgit