From 08e1ba3c5899213e63007b0158e0a491f2449ea4 Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Tue, 8 May 2012 15:08:51 +0800 Subject: Don't fork dex2oat process on target device. Change-Id: I35370d328aaa1aaaed5b56e62e51c4c74afa9cba --- src/compiler_llvm/compiler_llvm.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compiler_llvm/compiler_llvm.cc') 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()) { -- cgit v1.2.3-59-g8ed1b