diff options
| -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; } |

