]> granicus.if.org Git - clang/commitdiff
Add DeclarationName::dump().
authorAnders Carlsson <andersca@mac.com>
Sun, 15 Nov 2009 22:30:43 +0000 (22:30 +0000)
committerAnders Carlsson <andersca@mac.com>
Sun, 15 Nov 2009 22:30:43 +0000 (22:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88876 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/DeclarationName.h
lib/AST/DeclarationName.cpp

index ed4ac6b5d4e74699beb61bc3d1caf6850a81672a..a30f6e860dde92909c73a838432b33279fa87aae 100644 (file)
@@ -176,7 +176,6 @@ public:
   /// getNameKind - Determine what kind of name this is.
   NameKind getNameKind() const;
 
-
   /// getName - Retrieve the human-readable string for this name.
   std::string getAsString() const;
 
@@ -249,6 +248,8 @@ public:
   static DeclarationName getTombstoneMarker() {
     return DeclarationName(uintptr_t(-2));
   }
+  
+  void dump() const;
 };
 
 /// Ordering on two declaration names. If both names are identifiers,
index 8664c508615feba19c41bb331e4b01dd84adce91..d003594cf3b5b9e5f9978c5ffeb2b6837256e0f7 100644 (file)
@@ -310,6 +310,10 @@ DeclarationName DeclarationName::getUsingDirectiveName() {
   return DeclarationName(Ptr);
 }
 
+void DeclarationName::dump() const {
+  fprintf(stderr, "%s\n", getAsString().c_str());
+}
+
 DeclarationNameTable::DeclarationNameTable() {
   CXXSpecialNamesImpl = new llvm::FoldingSet<CXXSpecialName>;