summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/JIT
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-07-24 16:02:28 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-07-24 16:02:28 +0000
commit8c4c0213fdef0b260c6415f00090ee113686c780 (patch)
tree08f5499440bac45e59b8ce333ae0b32067cca765 /llvm/lib/ExecutionEngine/JIT
parentaf9b1e2d80f1756237815b0cf0b556fb3a105cec (diff)
downloadbcm5719-llvm-8c4c0213fdef0b260c6415f00090ee113686c780.tar.gz
bcm5719-llvm-8c4c0213fdef0b260c6415f00090ee113686c780.zip
Remove dead code.
Every user has been switched to using EngineBuilder. llvm-svn: 213871
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/JIT.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.h b/llvm/lib/ExecutionEngine/JIT/JIT.h
index 69a7c3670a8..a742a61de7f 100644
--- a/llvm/lib/ExecutionEngine/JIT/JIT.h
+++ b/llvm/lib/ExecutionEngine/JIT/JIT.h
@@ -91,21 +91,6 @@ public:
///
TargetJITInfo &getJITInfo() const { return TJI; }
- /// create - Create an return a new JIT compiler if there is one available
- /// for the current target. Otherwise, return null.
- ///
- static ExecutionEngine *create(Module *M,
- std::string *Err,
- JITMemoryManager *JMM,
- CodeGenOpt::Level OptLevel =
- CodeGenOpt::Default,
- bool GVsWithCode = true,
- Reloc::Model RM = Reloc::Default,
- CodeModel::Model CMM = CodeModel::JITDefault) {
- return ExecutionEngine::createJIT(M, Err, JMM, OptLevel, GVsWithCode,
- RM, CMM);
- }
-
void addModule(Module *M) override;
/// removeModule - Remove a Module from the list of modules. Returns true if
OpenPOWER on IntegriCloud