aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetJITInfo.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-10-29 23:54:10 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-10-29 23:54:10 +0000
commit46281865724c8836de538995e97168db3b06edfc (patch)
tree5a512ef190823d708f5e950a40f57529c9e33006 /include/llvm/Target/TargetJITInfo.h
parent70ba70f0659c331f02675139d3ae42d021e3d5b3 (diff)
downloadexternal_llvm-46281865724c8836de538995e97168db3b06edfc.zip
external_llvm-46281865724c8836de538995e97168db3b06edfc.tar.gz
external_llvm-46281865724c8836de538995e97168db3b06edfc.tar.bz2
This is not needed anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58406 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetJITInfo.h')
-rw-r--r--include/llvm/Target/TargetJITInfo.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/Target/TargetJITInfo.h b/include/llvm/Target/TargetJITInfo.h
index f7c9b0d..142f0ef 100644
--- a/include/llvm/Target/TargetJITInfo.h
+++ b/include/llvm/Target/TargetJITInfo.h
@@ -107,15 +107,6 @@ namespace llvm {
// JIT to manage a GOT for it.
bool needsGOT() const { return useGOT; }
- /// hasCustomConstantPool - Allows a target to specify that constant
- /// pool address resolution is handled by the target.
- virtual bool hasCustomConstantPool() const { return false; }
-
- /// getCustomConstantPoolEntryAddress - When using a custom constant
- /// pool, resolve a constant pool index to the address of where the
- /// entry is stored.
- virtual intptr_t getCustomConstantPoolEntryAddress(unsigned CPI) const
- {return 0;}
protected:
bool useGOT;
};