summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2016-08-18 21:09:19 +0000
committerHans Wennborg <hans@hanshq.net>2016-08-18 21:09:19 +0000
commit6f83e5b2555be35c3360a178fe456a41e7d30bef (patch)
tree0056be21a1121db90a50514be6c865994cc182c1
parentc18fb1de4bf473280315a746276e8af05890726d (diff)
ReleaseNotes: sphinx build fixes
git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_39@279146 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst17
1 files changed, 10 insertions, 7 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 5dfddbdb3e..9944c881c3 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -36,10 +36,10 @@ sections with improvements to Clang's support for those languages.
Major New Features
------------------
-- Clang will no longer pass --build-id by default to the linker. In modern
+- Clang will no longer pass ``--build-id`` by default to the linker. In modern
linkers that is a relatively expensive option. It can be passed explicitly
- with -Wl,--build-id. To have clang always pass it, build clang with
- -DENABLE_LINKER_BUILD_ID.
+ with ``-Wl,--build-id``. To have clang always pass it, build clang with
+ ``-DENABLE_LINKER_BUILD_ID``.
- On Itanium ABI targets, attribute abi_tag is now supported for compatibility
with GCC. Clang's implementation of abi_tag is mostly compatible with GCC ABI
version 10.
@@ -51,12 +51,15 @@ Clang's diagnostics are constantly being improved to catch more issues,
explain them more clearly, and provide more accurate source information
about them. The improvements since the 3.8 release include:
-- -Wcomma is a new warning to show most uses of the builtin comma operator.
-- -Wfloat-conversion has two new sub-warnings to give finer grain control for
+- ``-Wcomma`` is a new warning to show most uses of the builtin comma operator.
+
+- ``-Wfloat-conversion`` has two new sub-warnings to give finer grain control for
floating point to integer conversion warnings.
- - -Wfloat-overflow-conversion detects when a constant floating point value
+
+ - ``-Wfloat-overflow-conversion`` detects when a constant floating point value
is converted to an integer type and will overflow the target type.
- - -Wfloat-zero-conversion detects when a non-zero floating point value is
+
+ - ``-Wfloat-zero-conversion`` detects when a non-zero floating point value is
converted to a zero integer value.
Attribute Changes in Clang