Don't emit trailing semicolon.
authorDaniel Dunbar <daniel@zuster.org>
Thu, 24 Dec 2009 17:49:28 +0000 (17:49 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 24 Dec 2009 17:49:28 +0000 (17:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92133 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/LLVMCConfigurationEmitter.cpp

index 9651b9a353fb5e696d8f066ecc514c482bd43bed..b6858404fa3c9be633c01a4baa46e278e957103a 100644 (file)
@@ -2551,7 +2551,7 @@ void EmitEdgeClass (unsigned N, const std::string& Target,
   EmitCaseConstructHandler(Case, Indent2, IncDecWeight, false, OptDescs, O);
 
   O.indent(Indent2) << "return ret;\n";
-  O.indent(Indent1) << "};\n\n};\n\n";
+  O.indent(Indent1) << "}\n\n};\n\n";
 }
 
 /// EmitEdgeClasses - Emit Edge* classes that represent graph edges.