Fix unit test by holding compiler_lock_ on ourselves.

Because in previous CL, we removed the MutexLock in the
Materialize for parallel compilation, we don't hold the
lock before we call LoadElfFromCompilationUnit anymore.
Thus, we have to acquire for the lock in
LoadElfFromCompilationUnit.

Change-Id: Ia1b059bdffafc54a473820244bcfcfc634771061
diff --git a/src/compiler_llvm/compiler_llvm.cc b/src/compiler_llvm/compiler_llvm.cc
index 2ebf5f6..1623b2c 100644
--- a/src/compiler_llvm/compiler_llvm.cc
+++ b/src/compiler_llvm/compiler_llvm.cc
@@ -216,7 +216,7 @@
 
 
 void CompilerLLVM::LoadElfFromCompilationUnit(const CompilationUnit* cunit) {
-  compiler_lock_.AssertHeld();
+  MutexLock GUARD(compiler_lock_);
   DCHECK(cunit->IsMaterialized()) << cunit->GetElfIndex();
 
   if (!elf_loader_->LoadElfAt(cunit->GetElfIndex(),