diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-07-08 22:09:00 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-07-08 22:09:00 +0000 |
commit | 73097623650346be7fb01b773894bc3d8ea7ac8d (patch) | |
tree | bf4cd8093c6bf346e1d32cb8f3c8843bdbd5592f | |
parent | 489393d7b92107cc3de17d8dbe7dd11ab7395fdc (diff) | |
download | external_llvm-73097623650346be7fb01b773894bc3d8ea7ac8d.zip external_llvm-73097623650346be7fb01b773894bc3d8ea7ac8d.tar.gz external_llvm-73097623650346be7fb01b773894bc3d8ea7ac8d.tar.bz2 |
Fix the AssertingVH unittests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75060 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Value.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 0120333..94bafdf 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -517,7 +517,7 @@ void ValueHandleBase::ValueIsDeleted(Value *V) { << "\n"; #endif LLVM_UNREACHABLE("An asserting value handle still pointed to this" - "value!"); + " value!"); case Weak: // Weak just goes to null, which will unlink it from the list. ThisNode->operator=(0); @@ -592,4 +592,3 @@ void User::replaceUsesOfWith(Value *From, Value *To) { setOperand(i, To); // Fix it now... } } - |