summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-22 21:48:01 +0000
committerChris Lattner <sabre@nondot.org>2004-11-22 21:48:01 +0000
commit5eff98fd9fd20e179fb390d8f9a4498d3ac90303 (patch)
tree968fb837c8ce372c917085e7128f5643474ec186 /include
parent99b394db151615414fc3de24e72c199799a05398 (diff)
downloadllvm-5eff98fd9fd20e179fb390d8f9a4498d3ac90303.tar.gz
llvm-5eff98fd9fd20e179fb390d8f9a4498d3ac90303.tar.bz2
llvm-5eff98fd9fd20e179fb390d8f9a4498d3ac90303.tar.xz
These methods are now obsolete
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineCodeEmitter.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/CodeGen/MachineCodeEmitter.h b/include/llvm/CodeGen/MachineCodeEmitter.h
index c8a0882138..1faac71217 100644
--- a/include/llvm/CodeGen/MachineCodeEmitter.h
+++ b/include/llvm/CodeGen/MachineCodeEmitter.h
@@ -89,16 +89,6 @@ public:
/// noted with this interface.
virtual void addRelocation(const MachineRelocation &MR) = 0;
- /// getGlobalValueAddress - This method is used to get the address of the
- /// specified global value. In some cases, however, the address may not yet
- /// be known at the point that the method is called (for example, getting the
- /// address of a function which has not yet been code generated). If this is
- /// the case, the function returns zero, and the callee has to be able to
- /// handle the situation.
- ///
- virtual uint64_t getGlobalValueAddress(GlobalValue *V) = 0;
- virtual uint64_t getGlobalValueAddress(const char *SymName) = 0;
-
// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
// the constant pool that was last emitted with the 'emitConstantPool' method.
//