Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp770 unsigned Pow2_A = A.countTrailingZeros(); in GreatestCommonDivisor() local
772 if (Pow2_A > Pow2_B) { in GreatestCommonDivisor()
773 A.lshrInPlace(Pow2_A - Pow2_B); in GreatestCommonDivisor()
775 } else if (Pow2_B > Pow2_A) { in GreatestCommonDivisor()
776 B.lshrInPlace(Pow2_B - Pow2_A); in GreatestCommonDivisor()
777 Pow2 = Pow2_A; in GreatestCommonDivisor()
779 Pow2 = Pow2_A; in GreatestCommonDivisor()