TempScop: Make assert more descriptive

llvm-svn: 177642
This commit is contained in:
Tobias Grosser 2013-03-21 16:14:45 +00:00
parent 0851fa8819
commit 1f0d82c7d7
1 changed files with 1 additions and 1 deletions

View File

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