aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
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 /lib/VMCore
parent38ab9267c9d13d5deeba03b08649c11d8ffd637d (diff)
downloadexternal_llvm-62372c2ee7fdb67f69910af20378f8a6aff77ede.zip
external_llvm-62372c2ee7fdb67f69910af20378f8a6aff77ede.tar.gz
external_llvm-62372c2ee7fdb67f69910af20378f8a6aff77ede.tar.bz2
User ctor is now inline
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14431 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-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 0478a2f..f8dd186 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.
//