@@ -336,31 +336,31 @@ void APInt::setBitsSlowCase(unsigned loBit, unsigned hiBit) {
336336 U.pVal [word] = WORDTYPE_MAX;
337337}
338338
339- void APInt::clearBitsSlowCase (unsigned loBit , unsigned hiBit ) {
340- unsigned loWord = whichWord (loBit );
341- unsigned hiWord = whichWord (hiBit );
339+ void APInt::clearBitsSlowCase (unsigned LoBit , unsigned HiBit ) {
340+ unsigned LoWord = whichWord (LoBit );
341+ unsigned HiWord = whichWord (HiBit );
342342
343343 // Create an initial mask for the low word with ones below loBit.
344- uint64_t loMask = ~(WORDTYPE_MAX << whichBit (loBit ));
344+ uint64_t LoMask = ~(WORDTYPE_MAX << whichBit (LoBit ));
345345
346346 // If hiBit is not aligned, we need a high mask.
347- unsigned hiShiftAmt = whichBit (hiBit );
348- if (hiShiftAmt != 0 ) {
347+ unsigned HiShiftAmt = whichBit (HiBit );
348+ if (HiShiftAmt != 0 ) {
349349 // Create a high mask with ones above hiBit.
350- uint64_t hiMask = ~(WORDTYPE_MAX >> (APINT_BITS_PER_WORD - hiShiftAmt ));
350+ uint64_t HiMask = ~(WORDTYPE_MAX >> (APINT_BITS_PER_WORD - HiShiftAmt ));
351351 // If loWord and hiWord are equal, then we combine the masks. Otherwise,
352352 // set the bits in hiWord.
353- if (hiWord == loWord )
354- loMask &= hiMask ;
353+ if (HiWord == LoWord )
354+ LoMask &= HiMask ;
355355 else
356- U.pVal [hiWord ] &= hiMask ;
356+ U.pVal [HiWord ] &= HiMask ;
357357 }
358358 // Apply the mask to the low word.
359- U.pVal [loWord ] &= loMask ;
359+ U.pVal [LoWord ] &= LoMask ;
360360
361361 // Fill any words between loWord and hiWord with all zeros.
362- for (unsigned word = loWord + 1 ; word < hiWord ; ++word )
363- U.pVal [word ] = 0 ;
362+ for (unsigned Word = LoWord + 1 ; Word < HiWord ; ++Word )
363+ U.pVal [Word ] = 0 ;
364364}
365365
366366// Complement a bignum in-place.
0 commit comments