mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-05 14:34:55 +00:00
Silencing an MSVC warning about loop variable conflicting with a variable from an outer scope. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215888 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
049ffbbdf2
commit
9f92467a53
@ -1410,7 +1410,7 @@ SDValue SITargetLowering::PerformDAGCombine(SDNode *N,
|
||||
SDValue NewPtr = performSHLPtrCombine(Ptr.getNode(), AS, DCI);
|
||||
if (NewPtr) {
|
||||
SmallVector<SDValue, 8> NewOps;
|
||||
for (unsigned I = 0, N = MemNode->getNumOperands(); I != N; ++I)
|
||||
for (unsigned I = 0, E = MemNode->getNumOperands(); I != E; ++I)
|
||||
NewOps.push_back(MemNode->getOperand(I));
|
||||
|
||||
NewOps[N->getOpcode() == ISD::STORE ? 2 : 1] = NewPtr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user