mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 14:22:26 +00:00
[SelectionDAG] Use isa to silence unused variable warning (NFC).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316257 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ba5255623c
commit
34f57ff3e8
@ -2966,7 +2966,7 @@ unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, const APInt &DemandedElts,
|
|||||||
unsigned Tmp, Tmp2;
|
unsigned Tmp, Tmp2;
|
||||||
unsigned FirstAnswer = 1;
|
unsigned FirstAnswer = 1;
|
||||||
|
|
||||||
if (auto *C = dyn_cast<ConstantSDNode>(Op)) {
|
if (isa<ConstantSDNode>(Op)) {
|
||||||
const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
|
const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
|
||||||
return Val.getNumSignBits();
|
return Val.getNumSignBits();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user