summaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-05-23 15:26:33 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2010-05-23 15:26:33 +0000
commit3a050b22f37f3c79a10a8ebae3d292fa77e91b76 (patch)
tree16a0d9366f6805cfc9726c0b80dd8da84cb63a3d /Changelog
parent7999c9ee1f09f7d555e3efc39f030564f76a3354 (diff)
More faithful semantics for volatile reads and writes.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1346 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog7
1 files changed, 7 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index 81b2ff1..7a49998 100644
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,13 @@
Release 1.8
===========
+- More faithful semantics for volatile accesses:
+ . volatile reads and writes from a volatile global variable are treated
+ like input and output system calls (respectively), bypassing
+ the memory model entirely;
+ . volatile reads and writes from other locations are treated like
+ regular loads and stores.
+
- Added "fabs" (floating-point absolute value) unary operator to Clight;
map __builtin_fabs() to this operator.