diff options
| author | 2013-01-04 15:32:48 -0800 | |
|---|---|---|
| committer | 2013-01-04 15:32:48 -0800 | |
| commit | 05bcbc1a0394d5aa8f247e2ec175ff8f97926c78 (patch) | |
| tree | b64c8e8099d49b340e550687c0fab3e7618968b1 /src/compiler_llvm | |
| parent | 6641ea12b98dda9ec45d29f20e43f85698b88a02 (diff) | |
| parent | fffdb023275613612a22ec62b3421ffe4d2b73fe (diff) | |
Merge "Add memory barrier for final instance fields." into dalvik-dev
Diffstat (limited to 'src/compiler_llvm')
| -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( |