Searched defs:BitsLost (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1684 unsigned &BitsLost) {
1685 BitsLost = 0;
1692 ++BitsLost;
1694 A = A.lshr(BitsLost);
1695 C = C.lshr(BitsLost);
1696 D = D.lshr(BitsLost);
2013 unsigned BitsLost; local
2016 APInt ProbTrue = MultiplyAndLosePrecision(A, C, B, D, BitsLost);
2018 APInt Tmp1 = MultiplyAndLosePrecision(B, D, A, C, BitsLost);
2019 if (BitsLost) {
1683 MultiplyAndLosePrecision(APInt &A, APInt &B, APInt &C, APInt &D, unsigned &BitsLost) argument
[all...]

Completed in 62 milliseconds