diff options
Diffstat (limited to 'compiler/compiled_method.h')
-rw-r--r-- | compiler/compiled_method.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/compiled_method.h b/compiler/compiled_method.h index e92777ff12..fa80d67b40 100644 --- a/compiler/compiled_method.h +++ b/compiler/compiled_method.h @@ -58,10 +58,9 @@ class CompiledCode { size_t AlignCode(size_t offset) const; static size_t AlignCode(size_t offset, InstructionSet instruction_set); - // returns the difference between the code address and a usable PC. - // mainly to cope with kThumb2 where the lower bit must be set. - size_t CodeDelta() const; - static size_t CodeDelta(InstructionSet instruction_set); + // Returns the difference between the code address and a usable PC. + // Mainly to cope with `kThumb2` where the lower bit must be set. + size_t GetEntryPointAdjustment() const; // Returns a pointer suitable for invoking the code at the argument // code_pointer address. Mainly to cope with kThumb2 where the |