1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

Refactoring: raw pointer -> unique_ptr

llvm-svn: 218462
This commit is contained in:
Anton Yartsev 2014-09-25 19:55:58 +00:00
parent eaa04c42f6
commit ab00cb374c

View File

@ -232,16 +232,14 @@ bool TGParser::AddSubMultiClass(MultiClass *CurMC,
i != iend;
++i) {
// Clone the def and add it to the current multiclass
Record *NewDef = new Record(**i);
auto NewDef = make_unique<Record>(**i);
// Add all of the values in the superclass into the current def.
for (unsigned i = 0, e = MCVals.size(); i != e; ++i)
if (AddValue(NewDef, SubMultiClass.RefRange.Start, MCVals[i])) {
delete NewDef;
if (AddValue(NewDef.get(), SubMultiClass.RefRange.Start, MCVals[i]))
return true;
}
CurMC->DefPrototypes.push_back(NewDef);
CurMC->DefPrototypes.push_back(NewDef.release());
}
const std::vector<Init *> &SMCTArgs = SMC->Rec.getTemplateArgs();