From fffdb023275613612a22ec62b3421ffe4d2b73fe Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Fri, 4 Jan 2013 15:14:08 -0800 Subject: Add memory barrier for final instance fields. Change-Id: I1a02f0f75e974f4c84d61254da05480c20ff881c --- src/compiler_llvm/compiler_llvm.cc | 2 ++ 1 file changed, 2 insertions(+) (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 954e2f420b..6de10e6940 100644 --- a/src/compiler_llvm/compiler_llvm.cc +++ b/src/compiler_llvm/compiler_llvm.cc @@ -259,9 +259,11 @@ extern "C" art::CompiledMethod* ArtCompileMethod(art::Compiler& compiler, const art::DexFile::CodeItem* code_item, uint32_t access_flags, art::InvokeType invoke_type, + uint32_t class_def_idx, uint32_t method_idx, jobject class_loader, const art::DexFile& dex_file) { + UNUSED(class_def_idx); // TODO: this is used with Compiler::RequiresConstructorBarrier. art::ClassLinker *class_linker = art::Runtime::Current()->GetClassLinker(); art::OatCompilationUnit oat_compilation_unit( -- cgit v1.2.3-59-g8ed1b