eliminate a temporary smallvector

llvm-svn: 100082
This commit is contained in:
Chris Lattner 2010-04-01 04:51:13 +00:00
parent 56e4b4a913
commit ef0ec99665
2 changed files with 5 additions and 13 deletions

View File

@ -1078,9 +1078,7 @@ bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
/// ParseInstructionMetadata
/// ::= !dbg !42 (',' !dbg !57)*
bool LLParser::
ParseInstructionMetadata(SmallVectorImpl<std::pair<unsigned,
MDNode *> > &Result){
bool LLParser::ParseInstructionMetadata(Instruction *Inst) {
do {
if (Lex.getKind() != lltok::MetadataVar)
return TokError("expected metadata after comma");
@ -1094,7 +1092,7 @@ ParseInstructionMetadata(SmallVectorImpl<std::pair<unsigned,
return true;
unsigned MDK = M->getMDKindID(Name.c_str());
Result.push_back(std::make_pair(MDK, Node));
Inst->setMetadata(MDK, Node);
// If this is the end of the list, we're done.
} while (EatIfPresent(lltok::comma));
@ -2896,22 +2894,17 @@ bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
// With a normal result, we check to see if the instruction is followed by
// a comma and metadata.
if (EatIfPresent(lltok::comma))
if (ParseInstructionMetadata(MetadataOnInst))
if (ParseInstructionMetadata(Inst))
return true;
break;
case InstExtraComma:
// If the instruction parser ate an extra comma at the end of it, it
// *must* be followed by metadata.
if (ParseInstructionMetadata(MetadataOnInst))
if (ParseInstructionMetadata(Inst))
return true;
break;
}
// Set metadata attached with this instruction.
for (unsigned i = 0, e = MetadataOnInst.size(); i != e; ++i)
Inst->setMetadata(MetadataOnInst[i].first, MetadataOnInst[i].second);
MetadataOnInst.clear();
BB->getInstList().push_back(Inst);
// Set the name on the instruction.

View File

@ -171,8 +171,7 @@ namespace llvm {
bool ParseOptionalCallingConv(CallingConv::ID &CC);
bool ParseOptionalAlignment(unsigned &Alignment);
bool ParseOptionalStackAlignment(unsigned &Alignment);
bool ParseInstructionMetadata(SmallVectorImpl<std::pair<unsigned,
MDNode *> > &);
bool ParseInstructionMetadata(Instruction *Inst);
bool ParseOptionalCommaAlign(unsigned &Alignment, bool &AteExtraComma);
bool ParseIndexList(SmallVectorImpl<unsigned> &Indices,bool &AteExtraComma);
bool ParseIndexList(SmallVectorImpl<unsigned> &Indices) {