Tidy up. Add missing newline to generated file.

llvm-svn: 130779
This commit is contained in:
Jim Grosbach 2011-05-03 19:09:56 +00:00
parent 93b5cdc5ab
commit e6ce2053e7
1 changed files with 1 additions and 1 deletions

View File

@ -2321,7 +2321,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
OS << " for (unsigned i = 0; i != " << MaxNumOperands << "; ++i) {\n";
OS << " if (i + 1 >= Operands.size()) {\n";
OS << " OperandsValid = (it->Classes[i] == " <<"InvalidMatchClass);\n";
OS << " break;";
OS << " break;\n";
OS << " }\n";
OS << " if (ValidateOperandClass(Operands[i+1], it->Classes[i]))\n";
OS << " continue;\n";