From 9407be443e5a05ca5fca9cc876237b80c04428a3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 23 Aug 2001 17:06:38 +0000 Subject: [PATCH] Changed an assertion message git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/ValueHolderImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/ValueHolderImpl.h b/lib/VMCore/ValueHolderImpl.h index c59f9f2dafa..fff88fd53b9 100644 --- a/lib/VMCore/ValueHolderImpl.h +++ b/lib/VMCore/ValueHolderImpl.h @@ -48,7 +48,7 @@ template ValueSubclass *ValueHolder ::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);