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

llvm-svn: 59937
diff --git a/clang/lib/Analysis/BasicStore.cpp b/clang/lib/Analysis/BasicStore.cpp
index ae6febf..7238d5b 100644
--- a/clang/lib/Analysis/BasicStore.cpp
+++ b/clang/lib/Analysis/BasicStore.cpp
@@ -433,7 +433,7 @@
     if (isFirst) isFirst = false;
     else Out << nl;
     
-    Out << ' ' << I.getKey()->getName() << " : ";
+    Out << ' ' << I.getKey()->getNameAsString() << " : ";
     I.getData().print(Out);
   }
 }