diff options
| author | 2014-12-10 08:41:47 +0000 | |
|---|---|---|
| committer | 2014-12-10 08:41:48 +0000 | |
| commit | 776b880f66edb21cb3b4225877e494ec7a9ec1a2 (patch) | |
| tree | fb2bca24134f0116fcf14e8d87a69b77d22bd14d /compiler/compiled_method.h | |
| parent | 5e31672b257fed7496805fb277b2e5e6915e52c2 (diff) | |
| parent | 376b2bbf7c39108223a7a01568a7b4b04d84eeac (diff) | |
Merge "Ensure stack maps are 4 byte aligned."
Diffstat (limited to 'compiler/compiled_method.h')
| -rw-r--r-- | compiler/compiled_method.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler/compiled_method.h b/compiler/compiled_method.h index 7f76eef682..d2f5d019e9 100644 --- a/compiler/compiled_method.h +++ b/compiler/compiled_method.h @@ -291,7 +291,6 @@ class CompiledMethod FINAL : public CompiledCode { const size_t frame_size_in_bytes, const uint32_t core_spill_mask, const uint32_t fp_spill_mask, - const std::vector<uint8_t>& mapping_table, const std::vector<uint8_t>& vmap_table); // Constructs a CompiledMethod for the QuickJniCompiler. @@ -330,9 +329,8 @@ class CompiledMethod FINAL : public CompiledCode { return *src_mapping_table_; } - const std::vector<uint8_t>& GetMappingTable() const { - DCHECK(mapping_table_ != nullptr); - return *mapping_table_; + std::vector<uint8_t> const* GetMappingTable() const { + return mapping_table_; } const std::vector<uint8_t>& GetVmapTable() const { |