[IRCE] Reflow comments; NFC
authorSanjoy Das <sanjoy@playingwithpointers.com>
Wed, 9 Mar 2016 02:34:15 +0000 (02:34 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Wed, 9 Mar 2016 02:34:15 +0000 (02:34 +0000)
llvm-svn: 262988

llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp

index 590d4c53043170b145a576eb91bd810cee907a1a..ce8bfe61fe3b4748d75ad8fd6cb71825cefa9e89 100644 (file)
@@ -247,11 +247,9 @@ const char *InductiveRangeCheck::rangeCheckKindToStr(
   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.