mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-05 01:01:45 +00:00
[SelectionDAG] Tidyup UDIV computeKnownBits implementation
No need to clear KnownOne2/KnownZero2 bits as the next call to computeKnownBits will overwrite them anyway llvm-svn: 285398
This commit is contained in:
parent
8ba1e1dccc
commit
a8c45742e8
@ -2102,8 +2102,6 @@ void SelectionDAG::computeKnownBits(SDValue Op, APInt &KnownZero,
|
||||
computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
|
||||
unsigned LeadZ = KnownZero2.countLeadingOnes();
|
||||
|
||||
KnownOne2.clearAllBits();
|
||||
KnownZero2.clearAllBits();
|
||||
computeKnownBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1);
|
||||
unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
|
||||
if (RHSUnknownLeadingOnes != BitWidth)
|
||||
|
Loading…
x
Reference in New Issue
Block a user