------------------
- :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.
- ...
this: `clang --autocomplete=-cc1,-xc++,-fsyn`.
New Pragmas in Clang
------------------------
+--------------------
Clang now supports the ...