commit | a80cfb3063b7e4f01533748e90e97e73bbbb2e2b | [log] [tgz] |
---|---|---|
author | Chandler Carruth <chandlerc@gmail.com> | Mon Feb 06 20:59:07 2017 +0000 |
committer | Chandler Carruth <chandlerc@gmail.com> | Mon Feb 06 20:59:07 2017 +0000 |
tree | 7201f5040e348b97ba918e9138b6bafa3e0670d2 | |
parent | 1e0b158dbdf17f86503e9f5da29186c1ca3c9a4b [diff] |
[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 }); }