diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-27 18:01:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-27 18:01:38 +0000 |
commit | 62372c2ee7fdb67f69910af20378f8a6aff77ede (patch) | |
tree | 840055e348819a7f068d6ccd6b3a3b85534bba8f /lib/VMCore | |
parent | 38ab9267c9d13d5deeba03b08649c11d8ffd637d (diff) | |
download | external_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.cpp | 4 |
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. // |