From 62372c2ee7fdb67f69910af20378f8a6aff77ede Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 27 Jun 2004 18:01:38 +0000 Subject: [PATCH] User ctor is now inline git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14431 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Value.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 0478a2ffb61..f8dd186b65b 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -86,10 +86,6 @@ void Value::replaceAllUsesWith(Value *New) { // User Class //===----------------------------------------------------------------------===// -User::User(const Type *Ty, ValueTy vty, const std::string &name) - : Value(Ty, vty, name) { -} - // replaceUsesOfWith - Replaces all references to the "From" definition with // references to the "To" definition. //