Changed an assertion message

llvm-svn: 364
This commit is contained in:
Chris Lattner 2001-08-23 17:06:38 +00:00
parent 8e626e419e
commit 01a45c6c96
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ template<class ValueSubclass, class ItemParentType, class SymTabType>
ValueSubclass *ValueHolder<ValueSubclass,ItemParentType,SymTabType>
::remove(iterator &DI) {
assert(DI != ValueList.end() &&
"Trying to remove the end of the def list!!!");
"Trying to remove the end of the value list!!!");
ValueSubclass *i = *DI;
DI = ValueList.erase(DI);