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:
@@ -2125,8 +2125,8 @@ SDValue SystemZTargetLowering::lowerOR(SDValue Op, SelectionDAG &DAG) const {
|
||||
// Get the known-zero masks for each operand.
|
||||
SDValue Ops[] = { Op.getOperand(0), Op.getOperand(1) };
|
||||
APInt KnownZero[2], KnownOne[2];
|
||||
DAG.ComputeMaskedBits(Ops[0], KnownZero[0], KnownOne[0]);
|
||||
DAG.ComputeMaskedBits(Ops[1], KnownZero[1], KnownOne[1]);
|
||||
DAG.computeKnownBits(Ops[0], KnownZero[0], KnownOne[0]);
|
||||
DAG.computeKnownBits(Ops[1], KnownZero[1], KnownOne[1]);
|
||||
|
||||
// See if the upper 32 bits of one operand and the lower 32 bits of the
|
||||
// other are known zero. They are the low and high operands respectively.
|
||||
|
Reference in New Issue
Block a user