summaryrefslogtreecommitdiff
path: root/src/compiled_method.h
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2011-11-13 20:13:17 -0800
committer Ian Rogers <irogers@google.com> 2011-11-14 09:27:23 -0800
commit169c9a7f46776b235d0a37d5e0ff27682deffe06 (patch)
tree9bd38fe9508e827089d546f04b0b42020eef821e /src/compiled_method.h
parent0571d357843c53e042f370f5f2c2e9aa3fe803a9 (diff)
Remove the use of Method from jni_compiler
Change-Id: Ibf1c72a806e7f1ba7a2d83960c3d57f41937d336
Diffstat (limited to 'src/compiled_method.h')
-rw-r--r--src/compiled_method.h8
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_;
};