From: Eugene Zelenko Date: Tue, 15 May 2018 21:45:01 +0000 (+0000) Subject: [Documentation] Fix Release Notes format issues. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ddc500f2dee76e339af9d94b63b33e871597e429;p=clang [Documentation] Fix Release Notes format issues. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@332405 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 ...