summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineCodeEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-22 21:48:33 +0000
committerChris Lattner <sabre@nondot.org>2004-11-22 21:48:33 +0000
commit6f71720be3c67f6bffd3976805e577995d779a2f (patch)
tree019a30c8879b8464ce10f4c17fc5dd441f1c0c9d /lib/CodeGen/MachineCodeEmitter.cpp
parent5eff98fd9fd20e179fb390d8f9a4498d3ac90303 (diff)
downloadllvm-6f71720be3c67f6bffd3976805e577995d779a2f.tar.gz
llvm-6f71720be3c67f6bffd3976805e577995d779a2f.tar.bz2
llvm-6f71720be3c67f6bffd3976805e577995d779a2f.tar.xz
These methods are obsolete
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18129 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineCodeEmitter.cpp')
-rw-r--r--lib/CodeGen/MachineCodeEmitter.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/CodeGen/MachineCodeEmitter.cpp b/lib/CodeGen/MachineCodeEmitter.cpp
index c64366cded..3e955b0283 100644
--- a/lib/CodeGen/MachineCodeEmitter.cpp
+++ b/lib/CodeGen/MachineCodeEmitter.cpp
@@ -51,8 +51,6 @@ namespace {
std::cout << "<relocation> ";
}
- uint64_t getGlobalValueAddress(GlobalValue *V) { return 0; }
- uint64_t getGlobalValueAddress(const char *Name) { return 0; }
uint64_t getConstantPoolEntryAddress(unsigned Num) { return 0; }
uint64_t getCurrentPCValue() { return 0; }
uint64_t getCurrentPCOffset() { return 0; }
@@ -150,12 +148,6 @@ namespace {
void emitWordAt(unsigned W, unsigned *Ptr) {
MCE.emitWordAt(W, Ptr);
}
- uint64_t getGlobalValueAddress(GlobalValue *V) {
- return MCE.getGlobalValueAddress(V);
- }
- uint64_t getGlobalValueAddress(const char *Name) {
- return MCE.getGlobalValueAddress(Name);
- }
uint64_t getConstantPoolEntryAddress(unsigned Num) {
return MCE.getConstantPoolEntryAddress(Num);
}