diff options
-rw-r--r-- | clang/docs/ReleaseNotes.rst | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 4cb41b2c827..93a258c6378 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/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 ... |