diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-05-25 18:24:27 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-05-25 18:24:27 +0000 |
commit | 40f9a8730ad3a5eacf23a0f96ef001aa17ed106f (patch) | |
tree | 93bb58fc7852e5764fce9d77e6bbdf1c07e784ad /llvm/lib | |
parent | 5264183123b00ab7d37c3e31c23a270026e804a4 (diff) | |
download | bcm5719-llvm-40f9a8730ad3a5eacf23a0f96ef001aa17ed106f.tar.gz bcm5719-llvm-40f9a8730ad3a5eacf23a0f96ef001aa17ed106f.zip |
Remove this file as well as it is no longer needed nor it compiles
llvm-svn: 13762
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/ValueHolder.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/llvm/lib/Support/ValueHolder.cpp b/llvm/lib/Support/ValueHolder.cpp deleted file mode 100644 index 976f825598e..00000000000 --- a/llvm/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)); -} |