[llvm-commits] [llvm] r58406 - /llvm/trunk/include/llvm/Target/TargetJITInfo.h

Evan Cheng evan.cheng at apple.com
Wed Oct 29 16:54:10 PDT 2008


Author: evancheng
Date: Wed Oct 29 18:54:10 2008
New Revision: 58406

URL: http://llvm.org/viewvc/llvm-project?rev=58406&view=rev
Log:
This is not needed anymore.

Modified:
    llvm/trunk/include/llvm/Target/TargetJITInfo.h

Modified: llvm/trunk/include/llvm/Target/TargetJITInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetJITInfo.h?rev=58406&r1=58405&r2=58406&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Target/TargetJITInfo.h (original)
+++ llvm/trunk/include/llvm/Target/TargetJITInfo.h Wed Oct 29 18:54:10 2008
@@ -107,15 +107,6 @@
     // 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;
   };





More information about the llvm-commits mailing list