Tidy up. Add missing newline to generated file.
authorJim Grosbach <grosbach@apple.com>
Tue, 3 May 2011 19:09:56 +0000 (19:09 +0000)
committerJim Grosbach <grosbach@apple.com>
Tue, 3 May 2011 19:09:56 +0000 (19:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130779 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/AsmMatcherEmitter.cpp

index 1d14037d3ab7055543474daab4a7bffa9b4f9eca..bbe43493d10ba960d0377801cb06e92e8e2930d8 100644 (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";