[llvm] r277915 - [CodeGen] Fix a -Wdocumentation warning
David Majnemer via llvm-commits
llvm-commits at lists.llvm.org
Sat Aug 6 01:37:13 PDT 2016
Author: majnemer
Date: Sat Aug 6 03:37:12 2016
New Revision: 277915
URL: http://llvm.org/viewvc/llvm-project?rev=277915&view=rev
Log:
[CodeGen] Fix a -Wdocumentation warning
A parameter was documented with the wrong name.
No functionality change is intended.
Modified:
llvm/trunk/lib/CodeGen/IfConversion.cpp
Modified: llvm/trunk/lib/CodeGen/IfConversion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/IfConversion.cpp?rev=277915&r1=277914&r2=277915&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/IfConversion.cpp (original)
+++ llvm/trunk/lib/CodeGen/IfConversion.cpp Sat Aug 6 03:37:12 2016
@@ -598,7 +598,7 @@ static inline bool skipDebugInstructions
/// Decrement It until it points to a non-debug instruction or to Begin.
/// @param It Iterator to decrement.
-/// @param End Iterator that points to beginning. Will be compared to It
+/// @param Begin Iterator that points to beginning. Will be compared to It
/// @returns true if It == Begin, false otherwise.
static inline bool skipDebugInstructionsBackward(
MachineBasicBlock::iterator &It,
More information about the llvm-commits
mailing list