aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-27 18:01:38 +0000
committerChris Lattner <sabre@nondot.org>2004-06-27 18:01:38 +0000
commit62372c2ee7fdb67f69910af20378f8a6aff77ede (patch)
tree840055e348819a7f068d6ccd6b3a3b85534bba8f
parent38ab9267c9d13d5deeba03b08649c11d8ffd637d (diff)
User ctor is now inline
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14431 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Value.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp
index 0478a2ffb6..f8dd186b65 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.
//