[llvm-branch-commits] [cfe-branch] r244810 - Update release notes for some warning changes.
Richard Trieu via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Aug 12 14:02:11 PDT 2015
Author: rtrieu
Date: Wed Aug 12 16:02:10 2015
New Revision: 244810
URL: http://llvm.org/viewvc/llvm-project?rev=244810&view=rev
Log:
Update release notes for some warning changes.
Document -Wrange-loop-analysis, -Wpessimizing-move, and -Wredundant-move
New group -Wmove
-Wmove and -Winfinite-recursion added to -Wmost and -Wall
Modified:
cfe/branches/release_37/docs/ReleaseNotes.rst
Modified: cfe/branches/release_37/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/release_37/docs/ReleaseNotes.rst?rev=244810&r1=244809&r2=244810&view=diff
==============================================================================
--- cfe/branches/release_37/docs/ReleaseNotes.rst (original)
+++ cfe/branches/release_37/docs/ReleaseNotes.rst Wed Aug 12 16:02:10 2015
@@ -64,7 +64,25 @@ Clang's diagnostics are constantly being
explain them more clearly, and provide more accurate source information
about them. The improvements since the 3.6 release include:
-- ...
+- -Wrange-loop-analysis analyzes the loop variable type and the container type
+ to determine whether copies are made of the container elements. If possible,
+ suggest a const reference type to prevent copies, or a non-reference type
+ to indicate a copy is made.
+
+- -Wredundant-move warns when a parameter variable is moved on return and the
+ return type is the same as the variable. Returning the variable directly
+ will already make a move, so the call is not needed.
+
+- -Wpessimizing-move warns when a local variable is ir moved on return and the
+ return type is the same as the variable. Copy elision cannot take place with
+ a move, but can take place if the variable is returned directly.
+
+- -Wmove is a new warning group which has the previous two warnings,
+ -Wredundant-move and -Wpessimizing-move, as well as previous warning
+ -Wself-move. In addition, this group is part of -Wmost and -Wall now.
+
+- -Winfinite-recursion, a warning for functions that only call themselves,
+ is now part of -Wmost and -Wall.
New Compiler Flags
------------------
More information about the llvm-branch-commits
mailing list