Home
last modified time | relevance | path

Searched refs:InitNum (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DLoopUnrolling.cpp283 llvm::APInt InitNum = in shouldCompletelyUnroll() local
286 if (InitNum.getBitWidth() != BoundNum.getBitWidth()) { in shouldCompletelyUnroll()
287 InitNum = InitNum.zext(BoundNum.getBitWidth()); in shouldCompletelyUnroll()
288 BoundNum = BoundNum.zext(InitNum.getBitWidth()); in shouldCompletelyUnroll()
292 maxStep = (BoundNum - InitNum + 1).abs().getZExtValue(); in shouldCompletelyUnroll()
294 maxStep = (BoundNum - InitNum).abs().getZExtValue(); in shouldCompletelyUnroll()