diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-10-27 15:14:55 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-10-27 17:20:35 +0000 |
commit | 1ba0f596e9e4ddd778ab431237d11baa85594eba (patch) | |
tree | c1d51616adf4d98aab3ebccf47ad5146635cb87f /compiler/optimizing/code_generator.h | |
parent | 1ef3495abfa2a858b3cc7a1844383c8e7dff0b60 (diff) |
Support hard float on arm in optimizing compiler.
Also bump oat version, needed after latest hard float switch.
Change-Id: Idf5acfb36c07e74acff00edab998419a3c6b2965
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r-- | compiler/optimizing/code_generator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index 220d745561..163886921a 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -185,6 +185,7 @@ class CodeGenerator : public ArenaObject { virtual Location AllocateFreeRegister(Primitive::Type type) const = 0; static size_t FindFreeEntry(bool* array, size_t length); + static size_t FindTwoFreeConsecutiveEntries(bool* array, size_t length); virtual Location GetStackLocation(HLoadLocal* load) const = 0; |