Fix issue with invalid flat operand number

Avoid iterating over list of operands beyond the number of operands in it.

PS: this fixes issue with revision #167634.
llvm-svn: 167635
This commit is contained in:
Evandro Menezes 2012-11-09 21:27:03 +00:00
parent 567698a6ca
commit 03789a9ec7
1 changed files with 1 additions and 3 deletions

View File

@ -140,9 +140,7 @@ AddCodeToMergeInOperand(Record *R, BitsInit *BI, const std::string &VarName,
while (NumberedOp < NumberOps &&
CGI.Operands.isFlatOperandNotEmitted(NumberedOp))
++NumberedOp;
// If this operand has not been found, ignore it.
if (NumberedOp >= NumberOps)
return;
OpIdx = NumberedOp++;
}