[SLP] rename reduction variable to avoid shadowing; NFC
authorSanjay Patel <spatel@rotateright.com>
Thu, 21 Jan 2021 21:01:12 +0000 (16:01 -0500)
committerSanjay Patel <spatel@rotateright.com>
Thu, 21 Jan 2021 21:02:38 +0000 (16:02 -0500)
The code structure can likely be improved now that
'OperationData' is gone.

llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp

index 7326001..cee388e 100644 (file)
@@ -6436,8 +6436,8 @@ class HorizontalReduction {
       // in this case.
       // Do not perform analysis of remaining operands of ParentStackElem.first
       // instruction, this whole instruction is an extra argument.
-      RecurKind RdxKind = getRdxKind(ParentStackElem.first);
-      ParentStackElem.second = getNumberOfOperands(RdxKind);
+      RecurKind ParentRdxKind = getRdxKind(ParentStackElem.first);
+      ParentStackElem.second = getNumberOfOperands(ParentRdxKind);
     } else {
       // We ran into something like:
       // ParentStackElem.first += ... + ExtraArg + ...