From 1f0d82c7d722ace5805284ca4c9f1a70186d30d8 Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Thu, 21 Mar 2013 16:14:45 +0000 Subject: [PATCH] TempScop: Make assert more descriptive llvm-svn: 177642 --- polly/include/polly/TempScopInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polly/include/polly/TempScopInfo.h b/polly/include/polly/TempScopInfo.h index 9182dff..c922870 100755 --- a/polly/include/polly/TempScopInfo.h +++ b/polly/include/polly/TempScopInfo.h @@ -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; } -- 2.7.4