Rename a parameter to avoid confusion with a local variable

llvm-svn: 118656
This commit is contained in:
Matt Beaumont-Gay 2010-11-10 00:08:58 +00:00
parent cc78b0b67f
commit 55c4cc76ce
1 changed files with 3 additions and 3 deletions

View File

@ -326,15 +326,15 @@ public:
static ARMOperand *
CreateRegList(const SmallVectorImpl<std::pair<unsigned, SMLoc> > &Regs,
SMLoc S, SMLoc E) {
SMLoc StartLoc, SMLoc EndLoc) {
ARMOperand *Op = new ARMOperand(RegisterList);
Op->RegList.Registers = new SmallVector<unsigned, 32>();
for (SmallVectorImpl<std::pair<unsigned, SMLoc> >::const_iterator
I = Regs.begin(), E = Regs.end(); I != E; ++I)
Op->RegList.Registers->push_back(I->first);
std::sort(Op->RegList.Registers->begin(), Op->RegList.Registers->end());
Op->StartLoc = S;
Op->EndLoc = E;
Op->StartLoc = StartLoc;
Op->EndLoc = EndLoc;
return Op;
}