aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 f7c9b0d0ab..142f0efbd3 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;
};