aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-08-23 17:06:38 +0000
committerChris Lattner <sabre@nondot.org>2001-08-23 17:06:38 +0000
commit9407be443e5a05ca5fca9cc876237b80c04428a3 (patch)
treea5f35dc53b0b97a041c0e3838e9c4f85ccfed019
parentcda67e50867c41c75e1d864e33044e08c1c7fea7 (diff)
Changed an assertion message
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/ValueHolderImpl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/ValueHolderImpl.h b/lib/VMCore/ValueHolderImpl.h
index c59f9f2daf..fff88fd53b 100644
--- a/lib/VMCore/ValueHolderImpl.h
+++ b/lib/VMCore/ValueHolderImpl.h
@@ -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);