diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-06-03 11:23:52 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2015-06-03 11:23:52 +0100 |
commit | fd88f16100cceafbfde1b4f095f17e89444d6fa8 (patch) | |
tree | fdb6d0520ca419acef9e953e74dcbd7d908bc4dd /compiler/optimizing/code_generator_arm.h | |
parent | 1aebdae18678403bdac078cbbe1f7dd4243c44f3 (diff) |
Factorize code for common LocationSummary of HInvoke.
This is one step forward, we could factorize more, but
I wanted to get this out of the way first.
Change-Id: I6ae411a737eebaecb64974f47af507ce0cfbae85
Diffstat (limited to 'compiler/optimizing/code_generator_arm.h')
-rw-r--r-- | compiler/optimizing/code_generator_arm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_arm.h b/compiler/optimizing/code_generator_arm.h index d649cbffd1..d84f2d3d20 100644 --- a/compiler/optimizing/code_generator_arm.h +++ b/compiler/optimizing/code_generator_arm.h @@ -86,7 +86,8 @@ class InvokeDexCallingConventionVisitorARM : public InvokeDexCallingConventionVi virtual ~InvokeDexCallingConventionVisitorARM() {} Location GetNextLocation(Primitive::Type type) OVERRIDE; - Location GetReturnLocation(Primitive::Type type); + Location GetReturnLocation(Primitive::Type type) const OVERRIDE; + Location GetMethodLocation() const OVERRIDE; private: InvokeDexCallingConvention calling_convention; |