summaryrefslogtreecommitdiffstats
path: root/docs/ReleaseNotes.rst
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2018-05-15 21:45:01 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2018-05-15 21:45:01 +0000
commitddc500f2dee76e339af9d94b63b33e871597e429 (patch)
treea50b27c9271fb87f8ef7def7018cbcb44e4ec0ac /docs/ReleaseNotes.rst
parent0be5162f64047decec3c655bf3fb3618b3d8d8e8 (diff)
[Documentation] Fix Release Notes format issues.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@332405 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ReleaseNotes.rst')
-rw-r--r--docs/ReleaseNotes.rst15
1 files changed, 8 insertions, 7 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 4cb41b2c82..93a258c637 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -99,12 +99,13 @@ New Compiler Flags
------------------
- :option:`-fstrict-float-cast-overflow` and
- :option:`-fno-strict-float-cast-overflow` -
- When a floating-point value is not representable in a destination integer
- type, the code has undefined behavior according to the language standard.
- By default, Clang will not guarantee any particular result in that case.
- With the 'no-strict' option, Clang attempts to match the overflowing behavior
- of the target's native float-to-int conversion instructions.
+ :option:`-fno-strict-float-cast-overflow`.
+
+ When a floating-point value is not representable in a destination integer
+ type, the code has undefined behavior according to the language standard. By
+ default, Clang will not guarantee any particular result in that case. With the
+ 'no-strict' option, Clang attempts to match the overflowing behavior of the
+ target's native float-to-int conversion instructions.
- ...
@@ -127,7 +128,7 @@ Modified Compiler Flags
this: `clang --autocomplete=-cc1,-xc++,-fsyn`.
New Pragmas in Clang
------------------------
+--------------------
Clang now supports the ...