diff options
| author | 2013-01-04 15:14:08 -0800 | |
|---|---|---|
| committer | 2013-01-04 15:31:42 -0800 | |
| commit | fffdb023275613612a22ec62b3421ffe4d2b73fe (patch) | |
| tree | eb24cffd6ad7a50a11e9b3c3bcad3688865192e7 /src/compiler_llvm/compiler_llvm.cc | |
| parent | c8253caa7045a7683666725a6d8aeba96a8f9c7a (diff) | |
Add memory barrier for final instance fields.
Change-Id: I1a02f0f75e974f4c84d61254da05480c20ff881c
Diffstat (limited to 'src/compiler_llvm/compiler_llvm.cc')
| -rw-r--r-- | src/compiler_llvm/compiler_llvm.cc | 2 |
1 files changed, 2 insertions, 0 deletions
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( |