mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Rename ComputeMaskedBits to computeKnownBits. "Masked" has been
inappropriate since it lost its Mask parameter in r154011. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208811 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -393,7 +393,7 @@ void ConstantOffsetExtractor::ComputeKnownBits(Value *V, APInt &KnownOne,
|
||||
IntegerType *IT = cast<IntegerType>(V->getType());
|
||||
KnownOne = APInt(IT->getBitWidth(), 0);
|
||||
KnownZero = APInt(IT->getBitWidth(), 0);
|
||||
llvm::ComputeMaskedBits(V, KnownZero, KnownOne, DL, 0);
|
||||
llvm::computeKnownBits(V, KnownZero, KnownOne, DL, 0);
|
||||
}
|
||||
|
||||
bool ConstantOffsetExtractor::NoCommonBits(Value *LHS, Value *RHS) const {
|
||||
|
Reference in New Issue
Block a user