Remove a redundant #ifndef and add an assertion string.
llvm-svn: 82991
diff --git a/llvm/lib/Transforms/Utils/LCSSA.cpp b/llvm/lib/Transforms/Utils/LCSSA.cpp
index b510262..48e6a17 100644
--- a/llvm/lib/Transforms/Utils/LCSSA.cpp
+++ b/llvm/lib/Transforms/Utils/LCSSA.cpp
@@ -90,10 +90,8 @@
/// 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,