r335843 - The :option: syntax was generating Sphinx build warnings; switched to double backticks to silence the warning; NFC.
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 28 05:05:40 PDT 2018
Author: aaronballman
Date: Thu Jun 28 05:05:40 2018
New Revision: 335843
URL: http://llvm.org/viewvc/llvm-project?rev=335843&view=rev
Log:
The :option: syntax was generating Sphinx build warnings; switched to double backticks to silence the warning; NFC.
Modified:
cfe/trunk/docs/ReleaseNotes.rst
Modified: cfe/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ReleaseNotes.rst?rev=335843&r1=335842&r2=335843&view=diff
==============================================================================
--- cfe/trunk/docs/ReleaseNotes.rst (original)
+++ cfe/trunk/docs/ReleaseNotes.rst Thu Jun 28 05:05:40 2018
@@ -103,8 +103,7 @@ Non-comprehensive list of changes in thi
New Compiler Flags
------------------
-- :option:`-fstrict-float-cast-overflow` and
- :option:`-fno-strict-float-cast-overflow`.
+- ``-fstrict-float-cast-overflow`` and ``-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
@@ -112,7 +111,7 @@ New Compiler Flags
'no-strict' option, Clang attempts to match the overflowing behavior of the
target's native float-to-int conversion instructions.
-- :option: `-fforce-emit-vtables` and `-fno-force-emit-vtables`.
+- ``-fforce-emit-vtables`` and ``-fno-force-emit-vtables``.
In order to improve devirtualization, forces emitting of vtables even in
modules where it isn't necessary. It causes more inline virtual functions
More information about the cfe-commits
mailing list