diff options
| author | 2014-05-06 23:35:54 +0000 | |
|---|---|---|
| committer | 2014-05-06 23:35:54 +0000 | |
| commit | 68f8e40c90b323346c15d3f54f5884ef7e7af8c5 (patch) | |
| tree | 0befabca53c17bb6ee8f248881b3a381d0efa0fa /compiler/dex/quick/codegen_util.cc | |
| parent | eb534d810f50504ecc75e95eab50bd0ac736faf6 (diff) | |
| parent | 72d32629303f8f39362a4099481f48646aed042f (diff) | |
Merge "Give Compiler a back reference to the driver."
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
| -rw-r--r-- | compiler/dex/quick/codegen_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc index de13a2ee69..fbf8a0cc5b 100644 --- a/compiler/dex/quick/codegen_util.cc +++ b/compiler/dex/quick/codegen_util.cc @@ -1027,7 +1027,7 @@ CompiledMethod* Mir2Lir::GetCompiledMethod() { UniquePtr<std::vector<uint8_t> > cfi_info(ReturnCallFrameInformation()); CompiledMethod* result = - new CompiledMethod(*cu_->compiler_driver, cu_->instruction_set, code_buffer_, frame_size_, + new CompiledMethod(cu_->compiler_driver, cu_->instruction_set, code_buffer_, frame_size_, core_spill_mask_, fp_spill_mask_, encoded_mapping_table_, vmap_encoder.GetData(), native_gc_map_, cfi_info.get()); return result; |