diff options
| author | 2012-05-08 11:54:44 -0700 | |
|---|---|---|
| committer | 2012-05-08 11:54:44 -0700 | |
| commit | 42515cfaa8905071438cf21a0b924bb0c400c8c7 (patch) | |
| tree | ac802b7fa5cb14129ef4f760bcbd07fc34886b6a /src/compiler_llvm/compiler_llvm.cc | |
| parent | 7c96c1285a15b786a7d1ed2b6748bef541524343 (diff) | |
| parent | 08e1ba3c5899213e63007b0158e0a491f2449ea4 (diff) | |
Merge "Don't fork dex2oat process on target device." into ics-mr1-plus-art
Diffstat (limited to 'src/compiler_llvm/compiler_llvm.cc')
| -rw-r--r-- | src/compiler_llvm/compiler_llvm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler_llvm/compiler_llvm.cc b/src/compiler_llvm/compiler_llvm.cc index ca0a4dac3e..681b367e1a 100644 --- a/src/compiler_llvm/compiler_llvm.cc +++ b/src/compiler_llvm/compiler_llvm.cc @@ -183,7 +183,7 @@ void CompilerLLVM::Materialize(CompilationUnit* cunit) { } // Materialize the llvm::Module into ELF object file - cunit->Materialize(); + cunit->Materialize(compiler_->GetThreadCount()); // Load ELF image when automatic ELF loading is enabled if (IsAutoElfLoadingEnabled()) { |