From: Jeffrey Yasskin Date: Wed, 8 Jul 2009 22:09:00 +0000 (+0000) Subject: Fix the AssertingVH unittests. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=73097623650346be7fb01b773894bc3d8ea7ac8d;p=oota-llvm.git Fix the AssertingVH unittests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75060 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 0120333481c..94bafdf95f9 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... } } -