[PM/LCG] Fix the no-asserts build after r294227. Sorry for the noise.

llvm-svn: 294235
diff --git a/llvm/lib/Analysis/LazyCallGraph.cpp b/llvm/lib/Analysis/LazyCallGraph.cpp
index 1b9e6d3..3ab3c73 100644
--- a/llvm/lib/Analysis/LazyCallGraph.cpp
+++ b/llvm/lib/Analysis/LazyCallGraph.cpp
@@ -1811,7 +1811,9 @@
         (void)Inserted;
         assert(Inserted && "Cannot already have this RefSCC in the index map!");
         PostOrderRefSCCs.push_back(NewRC);
+#ifndef NDEBUG
         NewRC->verify();
+#endif
       });
 }