TempScop: Make assert more descriptive
authorTobias Grosser <grosser@fim.uni-passau.de>
Thu, 21 Mar 2013 16:14:45 +0000 (16:14 +0000)
committerTobias Grosser <grosser@fim.uni-passau.de>
Thu, 21 Mar 2013 16:14:45 +0000 (16:14 +0000)
llvm-svn: 177642

polly/include/polly/TempScopInfo.h

index 9182dff..c922870 100755 (executable)
@@ -155,7 +155,7 @@ public:
   ///
   const SCEV *getLoopBound(const Loop *L) const {
     LoopBoundMapType::const_iterator at = LoopBounds.find(L);
-    assert(at != LoopBounds.end() && "Only valid loop is allow!");
+    assert(at != LoopBounds.end() && "Bound for loop not available!");
     return at->second;
   }