From a80cfb3063b7e4f01533748e90e97e73bbbb2e2b Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Mon, 6 Feb 2017 20:59:07 +0000 Subject: [PM/LCG] Fix the no-asserts build after r294227. Sorry for the noise. llvm-svn: 294235 --- llvm/lib/Analysis/LazyCallGraph.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'llvm/lib/Analysis/LazyCallGraph.cpp') diff --git a/llvm/lib/Analysis/LazyCallGraph.cpp b/llvm/lib/Analysis/LazyCallGraph.cpp index 1b9e6d36916..3ab3c734263 100644 --- a/llvm/lib/Analysis/LazyCallGraph.cpp +++ b/llvm/lib/Analysis/LazyCallGraph.cpp @@ -1811,7 +1811,9 @@ void LazyCallGraph::buildRefSCCs() { (void)Inserted; assert(Inserted && "Cannot already have this RefSCC in the index map!"); PostOrderRefSCCs.push_back(NewRC); +#ifndef NDEBUG NewRC->verify(); +#endif }); } -- cgit v1.2.3