Added LLVM_DUMP_METHOD attributes for MatchableInfo::dump(). Defined it only if dump...
authorGalina Kistanova <gkistanova@gmail.com>
Wed, 17 May 2017 02:20:05 +0000 (02:20 +0000)
committerGalina Kistanova <gkistanova@gmail.com>
Wed, 17 May 2017 02:20:05 +0000 (02:20 +0000)
llvm-svn: 303229

llvm/utils/TableGen/AsmMatcherEmitter.cpp

index a5c2ea6..264175a 100644 (file)
@@ -763,7 +763,8 @@ public:
 
 } // end anonymous namespace
 
-void MatchableInfo::dump() const {
+#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
+LLVM_DUMP_METHOD void MatchableInfo::dump() const {
   errs() << TheDef->getName() << " -- " << "flattened:\"" << AsmString <<"\"\n";
 
   for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i) {
@@ -772,6 +773,7 @@ void MatchableInfo::dump() const {
     errs() << '\"' << Op.Token << "\"\n";
   }
 }
+#endif
 
 static std::pair<StringRef, StringRef>
 parseTwoOperandConstraint(StringRef S, ArrayRef<SMLoc> Loc) {