[tablegen] A couple of changes to ClangDiagnosticEmmitter.
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 25 May 2011 05:04:22 +0000 (05:04 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 25 May 2011 05:04:22 +0000 (05:04 +0000)
-Emit an empty warning option as string ("") instead of 0.
-For diagnostic names also emit the size of the string.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132046 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/ClangDiagnosticsEmitter.cpp

index 0f4b606808efaecebdaea6f78c523039ff2dd19d..acaa1f8f8f5094fed802df8ed97385c403b38ca9 100644 (file)
@@ -162,7 +162,7 @@ void ClangDiagsDefsEmitter::run(raw_ostream &OS) {
       OS << ", \"";
       OS.write_escaped(DI->getDef()->getValueAsString("GroupName")) << '"';
     } else {
-      OS << ", 0";
+      OS << ", \"\"";
     }
 
     // SFINAE bit
@@ -275,7 +275,9 @@ void ClangDiagGroupsEmitter::run(raw_ostream &OS) {
   for (std::map<std::string, GroupInfo>::iterator
        I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I) {
     // Group option string.
-    OS << "  { \"";
+    OS << "  { ";
+    OS << I->first.size() << ", ";
+    OS << "\"";
     OS.write_escaped(I->first) << "\","
                                << std::string(MaxLen-I->first.size()+1, ' ');