diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-03-09 02:34:15 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-03-09 02:34:15 +0000 |
commit | f13900f8acfbe385cb82ac0833338d396e1878e5 (patch) | |
tree | ce8a6d409c5c6d5a9cdd3d89f57a2e72a09d24bf | |
parent | 0e83a809a60f4c1a6acfab6b7c7d476981f928db (diff) | |
download | bcm5719-llvm-f13900f8acfbe385cb82ac0833338d396e1878e5.tar.gz bcm5719-llvm-f13900f8acfbe385cb82ac0833338d396e1878e5.zip |
[IRCE] Reflow comments; NFC
llvm-svn: 262988
-rw-r--r-- | llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp b/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp index 590d4c53043..ce8bfe61fe3 100644 --- a/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp +++ b/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp @@ -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. |