Convert IdentifierInfo's to be printed the same as DeclarationNames 
with implicit quotes around them.  This has a bunch of follow-on 
effects and requires tweaking to a whole lot of code.  This causes
a regression in two tests (xfailed) by causing it to emit things like:

  Line 10: duplicate interface declaration for category 'MyClass1' ('Category1')

instead of:

  Line 10: duplicate interface declaration for category 'MyClass1(Category1)'

I will fix this in a follow-up commit.

As part of this, I had to start switching stuff to use ->getDeclName() instead
of Decl::getName() for consistency.  This is good, but I was planning to do this
as an independent patch.  There will be several follow-on patches
to clean up some of the mess, but this patch is already too big.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59917 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Basic/Diagnostic.cpp b/lib/Basic/Diagnostic.cpp
index efdb329..8547ef4 100644
--- a/lib/Basic/Diagnostic.cpp
+++ b/lib/Basic/Diagnostic.cpp
@@ -482,6 +482,7 @@
     unsigned ArgNo = *DiagStr++ - '0';
 
     switch (getArgKind(ArgNo)) {
+    // ---- STRINGS ----
     case Diagnostic::ak_std_string: {
       const std::string &S = getArgStdStr(ArgNo);
       assert(ModifierLen == 0 && "No modifiers for strings yet");
@@ -494,12 +495,7 @@
       OutStr.append(S, S + strlen(S));
       break;
     }
-    case Diagnostic::ak_identifierinfo: {
-      const IdentifierInfo *II = getArgIdentifier(ArgNo);
-      assert(ModifierLen == 0 && "No modifiers for strings yet");
-      OutStr.append(II->getName(), II->getName() + II->getLength());
-      break;
-    }
+    // ---- INTEGERS ----
     case Diagnostic::ak_sint: {
       int Val = getArgSInt(ArgNo);
       
@@ -535,6 +531,15 @@
       }
       break;
     }
+    // ---- NAMES and TYPES ----
+    case Diagnostic::ak_identifierinfo: {
+      OutStr.push_back('\'');
+      const IdentifierInfo *II = getArgIdentifier(ArgNo);
+      assert(ModifierLen == 0 && "No modifiers for strings yet");
+      OutStr.append(II->getName(), II->getName() + II->getLength());
+      OutStr.push_back('\'');
+      break;
+    }
     case Diagnostic::ak_qualtype:
     case Diagnostic::ak_declarationname:
       OutStr.push_back('\'');