Skip to content
Snippets Groups Projects
Commit 7d3b0be0 authored by Dan Gohman's avatar Dan Gohman
Browse files

Remove a redundant #ifndef and add an assertion string.

llvm-svn: 82991
parent 9a7320c7
No related branches found
No related tags found
No related merge requests found
......@@ -90,10 +90,8 @@ namespace {
/// verifyAnalysis() - Verify loop nest.
virtual void verifyAnalysis() const {
#ifndef NDEBUG
// Check the special guarantees that LCSSA makes.
assert(L->isLCSSAForm());
#endif
assert(L->isLCSSAForm() && "LCSSA form not preserved!");
}
void getLoopValuesUsedOutsideLoop(Loop *L,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment