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

llvm-svn: 294235
This commit is contained in:
Chandler Carruth 2017-02-06 20:59:07 +00:00
parent 1e0b158dbd
commit a80cfb3063

View File

@ -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
});
}