diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-22 21:54:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-22 21:54:35 +0000 |
commit | cf88d324a892c8f93ccdac55788afb48b17c728b (patch) | |
tree | 3968afb7fd5847a84753b6601bb214aed08cebf6 /lib/ExecutionEngine/JIT/JITEmitter.cpp | |
parent | 213c969c92ce8cffbc085429a5f4eb08a412d195 (diff) |
Fix the FIXME, nuke the JIT specific forceCompilationOf method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/JITEmitter.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JITEmitter.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/ExecutionEngine/JIT/JITEmitter.cpp b/lib/ExecutionEngine/JIT/JITEmitter.cpp index be81614a02..50ec2e11d2 100644 --- a/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/lib/ExecutionEngine/JIT/JITEmitter.cpp @@ -252,13 +252,6 @@ namespace { virtual uint64_t getCurrentPCOffset(); virtual uint64_t getConstantPoolEntryAddress(unsigned Entry); - // forceCompilationOf - Force the compilation of the specified function, and - // return its address, because we REALLY need the address now. - // - // FIXME: This is JIT specific! - // - virtual uint64_t forceCompilationOf(Function *F); - private: void *getPointerToGlobal(GlobalValue *GV, void *Reference, bool NoNeedStub); }; @@ -417,10 +410,6 @@ uint64_t Emitter::getCurrentPCOffset() { return (intptr_t)CurByte-(intptr_t)CurBlock; } -uint64_t Emitter::forceCompilationOf(Function *F) { - return (intptr_t)TheJIT->getPointerToFunction(F); -} - // getPointerToNamedFunction - This function is used as a global wrapper to // JIT::getPointerToNamedFunction for the purpose of resolving symbols when // bugpoint is debugging the JIT. In that scenario, we are loading an .so and |