1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

[SLP] use dyn_cast instead of isa + cast; NFC

This commit is contained in:
Sanjay Patel 2021-03-26 13:52:01 -04:00
parent 934fb256bb
commit d84adfbff5

View File

@ -7098,10 +7098,9 @@ public:
// select, we also have to RAUW for the compare instruction feeding the
// reduction root. That's because the original compare may have extra uses
// besides the final select of the reduction.
if (isa<SelectInst>(ReductionRoot)) {
if (auto *ScalarSelect = dyn_cast<SelectInst>(ReductionRoot)) {
if (auto *VecSelect = dyn_cast<SelectInst>(VectorizedTree)) {
Instruction *ScalarCmp =
getCmpForMinMaxReduction(cast<Instruction>(ReductionRoot));
Instruction *ScalarCmp = getCmpForMinMaxReduction(ScalarSelect);
ScalarCmp->replaceAllUsesWith(VecSelect->getCondition());
}
}