diff options
Diffstat (limited to 'src/compiled_method.h')
| -rw-r--r-- | src/compiled_method.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiled_method.h b/src/compiled_method.h index 4e0870bbc0..b09a762f11 100644 --- a/src/compiled_method.h +++ b/src/compiled_method.h @@ -54,11 +54,11 @@ class CompiledMethod { InstructionSet instruction_set); private: - InstructionSet instruction_set_; + const InstructionSet instruction_set_; std::vector<uint8_t> code_; - size_t frame_size_in_bytes_; - uint32_t core_spill_mask_; - uint32_t fp_spill_mask_; + const size_t frame_size_in_bytes_; + const uint32_t core_spill_mask_; + const uint32_t fp_spill_mask_; std::vector<uint32_t> mapping_table_; std::vector<uint16_t> vmap_table_; }; |