Fix ART_USE_LLVM_COMPILER breakage.
Cope with today's compiler.cc change.
Change-Id: I0f13536652a5b7c617648fe43a03dbbec391efd6
diff --git a/src/compiler.cc b/src/compiler.cc
index 1797530..2ba89d4 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -983,7 +983,7 @@
const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
#if defined(ART_USE_LLVM_COMPILER)
- compiler_llvm::CompilerLLVM* compiler_llvm = context->compiler->GetCompilerLLVM();
+ compiler_llvm::CompilerLLVM* compiler_llvm = context->GetCompiler()->GetCompilerLLVM();
MutexLock GUARD(compiler_llvm->compiler_lock_);
// TODO: Remove this. We should not lock the compiler_lock_ in CompileClass()