Skip to content

Commit 3a4d65e

Browse files
committed
removed comment
1 parent 289fb1c commit 3a4d65e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Analysis/DemandedBits.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ void DemandedBits::determineLiveOperandBits(
8080
bool ShiftLeft) {
8181
APInt Range = APInt::getLowBitsSet(BitWidth, Max + 1) &
8282
~APInt::getLowBitsSet(BitWidth, Min);
83-
using ShiftFn = APInt (APInt::*)(unsigned) const; // one-word shift overload
83+
using ShiftFn = APInt (APInt::*)(unsigned) const;
8484
auto Shift = ShiftLeft ? static_cast<ShiftFn>(&APInt::shl)
8585
: static_cast<ShiftFn>(&APInt::lshr);
8686
AB = APInt::getZero(BitWidth);

0 commit comments

Comments
 (0)