diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-01-31 21:00:00 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-01-31 21:00:00 +0000 |
commit | 27b32b87ed8fdde58902457023705a0bc85ebf84 (patch) | |
tree | 19a53b7c5da5199ba774d6065ff5e53cfa115329 /llvm/lib/CodeGen/PseudoSourceValue.cpp | |
parent | 9cc55f5b1f5234fe5532bef3a5cb414d8e439661 (diff) | |
download | bcm5719-llvm-27b32b87ed8fdde58902457023705a0bc85ebf84.tar.gz bcm5719-llvm-27b32b87ed8fdde58902457023705a0bc85ebf84.zip |
Revert 46556 and 46585. Dan please fix the PseudoSourceValue problem and re-commit.
llvm-svn: 46623
Diffstat (limited to 'llvm/lib/CodeGen/PseudoSourceValue.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PseudoSourceValue.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp index da9af49f944..e69de29bb2d 100644 --- a/llvm/lib/CodeGen/PseudoSourceValue.cpp +++ b/llvm/lib/CodeGen/PseudoSourceValue.cpp @@ -1,33 +0,0 @@ -//===-- llvm/CodeGen/PseudoSourceValue.cpp ----------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file implements the PseudoSourceValue class. -// -//===----------------------------------------------------------------------===// - -#include "llvm/CodeGen/PseudoSourceValue.h" -#include "llvm/DerivedTypes.h" - -namespace llvm { - const PseudoSourceValue PseudoSourceValue::FPRel("FPRel"); - const PseudoSourceValue PseudoSourceValue::SPRel("SPRel"); - const PseudoSourceValue PseudoSourceValue::GPRel("GPRel"); - const PseudoSourceValue PseudoSourceValue::TPRel("TPRel"); - const PseudoSourceValue PseudoSourceValue::CPRel("CPRel"); - const PseudoSourceValue PseudoSourceValue::JTRel("JTRel"); - - PseudoSourceValue::PseudoSourceValue(const char *_name) : - Value(PointerType::getUnqual(Type::Int8Ty), PseudoSourceValueVal), - name(_name) { - } - - void PseudoSourceValue::print(std::ostream &OS) const { - OS << name; - } -} |