Migrate some stuff from NamedDecl::getName() to 
NamedDecl::getNameAsString() to make it more explicit.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59937 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AST/DeclarationName.cpp b/lib/AST/DeclarationName.cpp
index ed4b7c6..649b092 100644
--- a/lib/AST/DeclarationName.cpp
+++ b/lib/AST/DeclarationName.cpp
@@ -125,7 +125,7 @@
   case CXXConstructorName: {
     QualType ClassType = getCXXNameType();
     if (const RecordType *ClassRec = ClassType->getAsRecordType())
-      return ClassRec->getDecl()->getName();
+      return ClassRec->getDecl()->getNameAsString();
     return ClassType.getAsString();
   }
 
@@ -133,7 +133,7 @@
     std::string Result = "~";
     QualType Type = getCXXNameType();
     if (const RecordType *Rec = Type->getAsRecordType())
-      Result += Rec->getDecl()->getName();
+      Result += Rec->getDecl()->getNameAsString();
     else
       Result += Type.getAsString();
     return Result;
@@ -160,7 +160,7 @@
     std::string Result = "operator ";
     QualType Type = getCXXNameType();
     if (const RecordType *Rec = Type->getAsRecordType())
-      Result += Rec->getDecl()->getName();
+      Result += Rec->getDecl()->getNameAsString();
     else
       Result += Type.getAsString();
     return Result;