1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Add an assertion to check that we're really preserving LCSSA.

llvm-svn: 29886
This commit is contained in:
Owen Anderson 2006-08-25 22:12:36 +00:00
parent ccbb645459
commit e02cb4cda0

View File

@ -571,4 +571,6 @@ void IndVarSimplify::runOnLoop(Loop *L) {
#endif
DeleteTriviallyDeadInstructions(DeadInsts);
if (mustPreserveAnalysisID(LCSSAID)) assert(L->isLCSSAForm());
}