diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-03-21 16:14:45 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-03-21 16:14:45 +0000 |
commit | 1f0d82c7d722ace5805284ca4c9f1a70186d30d8 (patch) | |
tree | 2e9ceab9e5a7174bd0f0efbe9e986469cba10dc9 /polly/include | |
parent | 0851fa881969d5f16540155bd85ce0cd2df95da3 (diff) | |
download | bcm5719-llvm-1f0d82c7d722ace5805284ca4c9f1a70186d30d8.tar.gz bcm5719-llvm-1f0d82c7d722ace5805284ca4c9f1a70186d30d8.zip |
TempScop: Make assert more descriptive
llvm-svn: 177642
Diffstat (limited to 'polly/include')
-rwxr-xr-x | polly/include/polly/TempScopInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/include/polly/TempScopInfo.h b/polly/include/polly/TempScopInfo.h index 9182dff056d..c9228705564 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; } |