[llvm] r262988 - [IRCE] Reflow comments; NFC
Sanjoy Das via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 8 18:34:16 PST 2016
Author: sanjoy
Date: Tue Mar 8 20:34:15 2016
New Revision: 262988
URL: http://llvm.org/viewvc/llvm-project?rev=262988&view=rev
Log:
[IRCE] Reflow comments; NFC
Modified:
llvm/trunk/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp?rev=262988&r1=262987&r2=262988&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp Tue Mar 8 20:34:15 2016
@@ -247,11 +247,9 @@ const char *InductiveRangeCheck::rangeCh
llvm_unreachable("unknown range check type!");
}
-/// Parse a single ICmp instruction, `ICI`, into a range check. If `ICI`
-/// cannot
+/// Parse a single ICmp instruction, `ICI`, into a range check. If `ICI` cannot
/// be interpreted as a range check, return `RANGE_CHECK_UNKNOWN` and set
-/// `Index` and `Length` to `nullptr`. Otherwise set `Index` to the value
-/// being
+/// `Index` and `Length` to `nullptr`. Otherwise set `Index` to the value being
/// range checked, and set `Length` to the upper limit `Index` is being range
/// checked with if (and only if) the range check type is stronger or equal to
/// RANGE_CHECK_UPPER.
More information about the llvm-commits
mailing list