summaryrefslogtreecommitdiff
path: root/lib/Support
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-05-25 18:24:27 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-05-25 18:24:27 +0000
commit2662aa0f0063633f1cb9e5aae147bb8ef794f652 (patch)
treedf074c40a35e9be97944c84c546cd2526eb882f9 /lib/Support
parentfa452c05504ebee698e00050d04e1a43b0f21045 (diff)
downloadllvm-2662aa0f0063633f1cb9e5aae147bb8ef794f652.tar.gz
llvm-2662aa0f0063633f1cb9e5aae147bb8ef794f652.tar.bz2
llvm-2662aa0f0063633f1cb9e5aae147bb8ef794f652.tar.xz
Remove this file as well as it is no longer needed nor it compiles
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13762 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/ValueHolder.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/Support/ValueHolder.cpp b/lib/Support/ValueHolder.cpp
deleted file mode 100644
index 976f825598..0000000000
--- a/lib/Support/ValueHolder.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//===-- ValueHolder.cpp - Wrapper for Value implementation ----------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This class defines a simple subclass of User, which keeps a pointer to a
-// Value, which automatically updates when Value::replaceAllUsesWith is called.
-// This is useful when you have pointers to Value's in your pass, but the
-// pointers get invalidated when some other portion of the algorithm is
-// replacing Values with other Values.
-//
-//===----------------------------------------------------------------------===//
-
-#include "llvm/Support/ValueHolder.h"
-#include "llvm/Type.h"
-
-using namespace llvm;
-
-ValueHolder::ValueHolder(Value *V) : User(Type::TypeTy, Value::TypeVal) {
- Operands.push_back(Use(V, this));
-}