1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

[Orc] Remove another unnecessary typedef.

llvm-svn: 233184
This commit is contained in:
Lang Hames 2015-03-25 12:32:36 +00:00
parent 713ffecfc7
commit efdbea8d66

View File

@ -34,7 +34,7 @@ public:
typedef orc::LazyEmittingLayer<CompileLayerT> LazyEmitLayerT;
typedef orc::CompileOnDemandLayer<LazyEmitLayerT,
CompileCallbackMgr> CODLayerT;
typedef typename CODLayerT::ModuleSetHandleT ModuleHandleT;
typedef CODLayerT::ModuleSetHandleT ModuleHandleT;
OrcLazyJIT(std::unique_ptr<TargetMachine> TM, LLVMContext &Context)
: Error(false), TM(std::move(TM)),