diff options
| author | 2013-09-04 01:03:04 +0000 | |
|---|---|---|
| committer | 2013-09-04 01:03:05 +0000 | |
| commit | 22955837e20f126845ff0e516dfa6f74ec81d240 (patch) | |
| tree | 884c9c87abca2989170d516f0099b710330ba5ea /compiler/llvm/compiler_llvm.cc | |
| parent | 68708f536d11f8824d881b640f3902093075c0a6 (diff) | |
| parent | 193bad9b9cfd10642043fa2ebbfc68bd5f9ede4b (diff) | |
Merge "Multi threaded hashed deduplication during compilation." into klp-dev
Diffstat (limited to 'compiler/llvm/compiler_llvm.cc')
| -rw-r--r-- | compiler/llvm/compiler_llvm.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/llvm/compiler_llvm.cc b/compiler/llvm/compiler_llvm.cc index 6b19a37b6f..fd440d5bf0 100644 --- a/compiler/llvm/compiler_llvm.cc +++ b/compiler/llvm/compiler_llvm.cc @@ -153,9 +153,8 @@ CompileDexMethod(DexCompilationUnit* dex_compilation_unit, InvokeType invoke_typ MethodReference mref(dex_compilation_unit->GetDexFile(), dex_compilation_unit->GetDexMethodIndex()); - return new CompiledMethod(compiler_driver_->GetInstructionSet(), - cunit->GetElfObject(), - *verifier::MethodVerifier::GetDexGcMap(mref), + return new CompiledMethod(*compiler_driver_, compiler_driver_->GetInstructionSet(), + cunit->GetElfObject(), *verifier::MethodVerifier::GetDexGcMap(mref), cunit->GetDexCompilationUnit()->GetSymbol()); } |