1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

[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 1eb956c2eb
commit e38cc318e0

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